We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b8fb73 commit b76eea2Copy full SHA for b76eea2
1 file changed
pyproject.toml
@@ -20,11 +20,14 @@ classifiers = [
20
dependencies = [
21
"colorama>=0.4.6",
22
"numpy>=1.25; python_version<'3.13'",
23
- "numpy>=2.1.3; python_version>='3.13'",
+ "numpy>=2.1.3; python_version>='3.13' and python_version<'3.14'",
24
+ "numpy>=2.3.0; python_version>='3.14'",
25
"packaging>=20.0",
- "scikit-learn>=1.0.0",
26
+ "scikit-learn>=1.0.0; python_version<'3.14'",
27
+ "scikit-learn>=1.7.2; python_version>='3.14'",
28
"scipy>=1.0.0; python_version<'3.13'",
- "scipy>=1.14.1; python_version>='3.13'",
29
+ "scipy>=1.14.1; python_version>='3.13' and python_version<'3.14'",
30
+ "scipy>=1.17.0; python_version>='3.14'",
31
]
32
33
[project.optional-dependencies]
0 commit comments