-
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: Add all released Python version above 3.8 until 3.11 to CI
Add all released Python version above 3.8 until 3.11 to CI: WMA is known to work with Python 3.10, so add this and other versions so that there can be an indication that the tool can be used with such versions. Adapt the requirements file to install the appropriate versions for each Python version.
- Loading branch information
1 parent
8224583
commit 370734e
Showing
2 changed files
with
9 additions
and
5 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,12 +1,16 @@ | ||
joblib==1.1.* | ||
matplotlib==3.6.* | ||
nibabel==3.0.* | ||
numpy==1.20.* | ||
numpy==1.20.*;python_version=="3.8" | ||
numpy==1.21.*;python_version=="3.9" | ||
pandas==2.0.3 | ||
pytest | ||
pytest_console_scripts | ||
setuptools==44.0.* | ||
scipy==1.4.* | ||
statsmodels==0.10.* | ||
vtk==9.1.* | ||
scipy==1.4.*;python_version=="3.8" | ||
scipy==1.5.*;python_version=="3.9" | ||
statsmodels==0.10.*;python_version=="3.8" | ||
statsmodels==0.13.*;python_version=="3.9" | ||
vtk==9.1.*;python_version>="3.8,<=3.9" | ||
vtk==9.2.*;python_version=="3.10" | ||
xlrd |