Skip to content

Commit

Permalink
fix the requirement version of numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
decfrr committed Jun 24, 2024
1 parent def3375 commit 67ff5ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [
"wheel",
"setuptools",
"cython>=0.21.0",
"numpy>=v1.20.0",
"numpy>=v1.20.0, <=1.26.4",
"scipy",
]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def package_files(directory):
package_data={"": package_data},
ext_modules=ext_modules,
cmdclass=cmdclass,
setup_requires=["numpy >= 1.20.0"],
setup_requires=["numpy >= 1.20.0, <=1.26.4"],
install_requires=install_requires,
tests_require=["nose", "coverage"],
extras_require={
Expand Down

0 comments on commit 67ff5ff

Please sign in to comment.