-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: Relax the Python package version requirements
Relax the Python package version requirements: use `>=` so that newer package version can be used. Especially relevant for the package to work with newer Python versions. Add a test case to the GHA workflow to test the minimum required versions.
- Loading branch information
1 parent
e1b19a0
commit b6f230e
Showing
3 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
cython==0.29.* | ||
joblib==1.1.* | ||
matplotlib==3.6.* | ||
nibabel==3.0.* | ||
numpy==1.20.* | ||
pandas==2.0.3 | ||
setuptools==44.0.* | ||
scipy==1.4.* | ||
statsmodels==0.10.* | ||
vtk==9.1.* | ||
cython>=0.29.0 | ||
joblib>=1.1.0 | ||
matplotlib>=3.6.0 | ||
nibabel>=3.0.0 | ||
numpy>=1.20.0 | ||
pandas>=2.0.3 | ||
setuptools>=44.0.0 | ||
scipy>=1.4.0 | ||
statsmodels>=0.10.0 | ||
vtk>=9.1.0 | ||
xlrd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters