Skip to content

Commit

Permalink
Remove upper version on numpy requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
AlainKadar committed Apr 10, 2024
1 parent 9613d04 commit f575843
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,7 +2,7 @@
requires = ["setuptools",
"wheel",
"Cython",
"numpy"
"oldest-supported-numpy",
]

[project]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy<1.25.0,>=1.18.5
numpy>=1.18.5
scipy~=1.6.0
scikit-image~=0.18.1
matplotlib~=3.3.4
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
name='StructuralGT',
packages = find_packages(),
install_requires=[
'numpy<1.25.0,>=1.18.5',
'numpy>=1.18.5',
'scipy',
'scikit-image',
'matplotlib',
Expand Down

0 comments on commit f575843

Please sign in to comment.