Skip to content

Commit

Permalink
deps: set upper bounds to match at most the current major releases
Browse files Browse the repository at this point in the history
  • Loading branch information
afermg authored and gnodar01 committed Dec 13, 2024
1 parent 75ddd05 commit 00d0dfe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ def run_tests(self):
},
install_requires=[
"deprecation",
"matplotlib>=3.1.3",
"numpy>=1.18.2",
"pillow>=7.1.0",
"scikit-image>=0.17.2",
"scipy>=1.4.1,!=1.11.0",
"matplotlib>=3.1.3,<4",
"numpy>=1.18.2,<3",
"pillow>=7.1.0,<12",
"scikit-image>=0.17.2,<=0.24",
"scipy>=1.4.1,!=1.11.0,<2",
],
tests_require=[
"pytest",
Expand Down

0 comments on commit 00d0dfe

Please sign in to comment.