File tree Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,15 @@ jobs:
31
31
AFNI_TTATLAS_DATASET : /opt/afni/atlases
32
32
AFNI_PLUGINPATH : /opt/afni/plugins
33
33
ANTSPATH : /opt/ants
34
+ DEPS : ${{ matrix.deps }}.txt
34
35
strategy :
35
36
max-parallel : 5
36
37
matrix :
37
- python-version : [3.8, 3.9]
38
+ python-version : ["3.8", "3.9", "3.10"]
39
+ deps : ["requirements"]
40
+ include :
41
+ - python-version : " 3.8"
42
+ deps : " min-requirements"
38
43
39
44
steps :
40
45
- uses : actions/cache@v3
@@ -109,10 +114,10 @@ jobs:
109
114
run : |
110
115
conda install fsl-fugue fsl-topup
111
116
- uses : actions/checkout@v3
112
- - name : Install minimal dependencies
117
+ - name : Install dependencies
113
118
timeout-minutes : 5
114
119
run : |
115
- pip install -r min-requirements.txt
120
+ pip install -r $DEPS
116
121
pip install .[tests]
117
122
118
123
Original file line number Diff line number Diff line change 1
1
# Auto-generated by .maint/update_requirements.py
2
2
attrs==20.1.0
3
3
nibabel==3.1.0
4
- nipype==1.5.1
4
+ nipype==1.8.5
5
5
traits<6.4
6
- niworkflows==1.6.3
6
+ niworkflows==1.7.0
7
7
nitransforms==21.0.0
8
8
numpy==1.21.0
9
9
pybids==0.15.1
Original file line number Diff line number Diff line change 1
1
# Auto-generated by .maint/update_requirements.py
2
2
attrs >= 20.1.0
3
3
nibabel >= 3.1.0
4
- nipype < 2.0 ,>= 1.5.1
4
+ nipype < 2.0 ,>= 1.8.5
5
5
traits < 6.4
6
- niworkflows ~ =1.6.3
6
+ niworkflows > =1.7.0
7
7
nitransforms >= 21.0.0
8
8
numpy >= 1.21.0
9
9
pybids >= 0.15.1
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ setup_requires =
30
30
install_requires =
31
31
attrs >= 20.1.0
32
32
nibabel >=3.1.0
33
- nipype >=1.5.1 ,<2.0
33
+ nipype >=1.8.5 ,<2.0
34
34
traits <6.4
35
35
niworkflows >= 1.7.0
36
36
nitransforms >= 21.0.0
You can’t perform that action at this time.
0 commit comments