Skip to content

Commit

Permalink
Avoid numpy 2.2.2: github.com/numpy/numpy/issues/28190 (#5032)
Browse files Browse the repository at this point in the history
  • Loading branch information
spxiwh authored Feb 4, 2025
1 parent c52c22b commit 938f78a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
requires = ["setuptools>=70.0.0",
"wheel",
"cython>=0.29.21",
"numpy>=2.0.0",
"numpy>=2.0.0,!=2.2.2",
]
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ astropy>=2.0.3,!=4.2.1,!=4.0.5
Mako>=1.0.1
scipy>=0.16.0
matplotlib>=2.0.0
numpy>=1.16.0,!=1.19.0
numpy>=1.16.0,!=1.19.0,!=2.2.2
pillow
h5py>=3.0.0,!=3.7.0
jinja2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
setup_requires = ['numpy>=1.16.0']
install_requires = setup_requires + [
'cython>=0.29',
'numpy>=1.16.0,!=1.19.0',
'numpy>=1.16.0,!=1.19.0,!=2.2.2',
'scipy>=0.16.0',
'astropy>=2.0.3,!=4.2.1,!=4.0.5',
'matplotlib>=1.5.1',
Expand Down

0 comments on commit 938f78a

Please sign in to comment.