experiment with fixing numpy dependency

This commit is contained in:
SkalskiP 2025-02-18 08:54:08 +01:00
parent 77b7d3733a
commit 23301bbd17
1 changed files with 5 additions and 2 deletions

View File

@ -38,8 +38,11 @@ classifiers = [
'Operating System :: MacOS',
]
dependencies = [
"numpy>=1.21.2,<1.26.0; python_version < '3.12'",
"numpy>=1.26.0,<2.1.0; python_version >= '3.12' and python_version < '3.13'",
# "numpy>=1.21.2,<1.26.0; python_version < '3.12'",
# "numpy>=1.26.0,<2.1.0; python_version >= '3.12' and python_version < '3.13'",
# "numpy>=2.1.0; python_version >= '3.13'",
"numpy>=1.21.2,<1.26.0; python_version < '3.10'",
"numpy>=1.26.0,<2.1.0; python_version >= '3.10' and python_version < '3.13'",
"numpy>=2.1.0; python_version >= '3.13'",
"scipy (==1.10.0); python_version < '3.9'",
"scipy (>=1.10.0,<1.14.1) ; python_version >= '3.9' and python_version < '3.13'",