Skip to content

Commit

Permalink
ENH: Add all released Python version above 3.8 to CI
Browse files Browse the repository at this point in the history
Add all released Python version above 3.8 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.
  • Loading branch information
jhlegarreta committed Oct 6, 2023
1 parent 2766202 commit 20fd253
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
# max-parallel: 6
matrix:
os: [ubuntu-latest]
python-version: ['3.8']
python-version: ['3.8', '3.9', '3.10', '3.11']

steps:
- name: Check out repository
Expand Down
9 changes: 6 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
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.*
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.*
xlrd

0 comments on commit 20fd253

Please sign in to comment.