Skip to content

Commit

Permalink
experiment with fixing numpy dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
SkalskiP committed Feb 18, 2025
1 parent 77b7d37 commit 23301bb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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'",
Expand Down

0 comments on commit 23301bb

Please sign in to comment.