Skip to content

Commit 0c26e09

Browse files
committed
CI: Install requires; DEP: Require nipreps/niworkflows#358
1 parent 3ece83d commit 0c26e09

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,9 @@ jobs:
318318
apt-get install -y graphviz
319319
- run:
320320
name: Install fMRIPrep
321-
command: python -m pip install ".[doc]"
321+
command: |
322+
python -m pip install -r requirements.txt
323+
python -m pip install ".[doc]"
322324
- run:
323325
name: Build documentation
324326
command: make SPHINXOPTS="-W" -C docs html

docs/environment.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ dependencies:
2828
- svgutils
2929
- nitime
3030
- nilearn!=0.5.0,!=0.5.1
31-
- niworkflows<0.9.0a0,>=0.8.1
32-
- smriprep
3331
- tedana>=0.0.5
32+
- git+https://github.com/effigies/niworkflows.git@e6a277ee5e47be5f8148b136b7201c9beb8e70a3#egg=niworkflows
33+
- git+https://github.com/poldracklab/smriprep.git@f1cfc37bcdc346549dbf1d037cdade3a3b32d5de#egg=smriprep
34+
- templateflow<0.2.0a0,>=0.1.3

fmriprep/__about__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,14 @@
8989
'nilearn!=0.5.0,!=0.5.1',
9090
'nipype>=1.1.6',
9191
'nitime',
92-
'niworkflows',
92+
'niworkflows>=0.9',
9393
'numpy',
9494
'pandas',
9595
'psutil>=5.4',
9696
'pybids<0.8.0a0,>=0.7.1',
9797
'pyyaml',
9898
'scikit-image',
99-
'smriprep',
99+
'smriprep>=0.2.0a',
100100
'statsmodels',
101101
'tedana>=0.0.5',
102102
'templateflow<0.2.0a0,>=0.1.3',
@@ -107,7 +107,7 @@
107107
'git+https://github.com/poldracklab/niworkflows.git@'
108108
'076aed98962b10d107c83110c05e42466a89bbc4#egg=niworkflows',
109109
'git+https://github.com/poldracklab/smriprep.git@'
110-
'f1cfc37bcdc346549dbf1d037cdade3a3b32d5de#egg=smriprep-0.1.0',
110+
'f1cfc37bcdc346549dbf1d037cdade3a3b32d5de#egg=smriprep',
111111
]
112112

113113
TESTS_REQUIRES = [

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
nilearn!=0.5.0,!=0.5.1
2-
git+https://github.com/poldracklab/niworkflows.git@076aed98962b10d107c83110c05e42466a89bbc4#egg=niworkflows
3-
git+https://github.com/poldracklab/smriprep.git@f1cfc37bcdc346549dbf1d037cdade3a3b32d5de#egg=smriprep-0.1.0
2+
git+https://github.com/effigies/niworkflows.git@5e9daf0b08fcad2b17350a71ecaf71fa9ce4eff7#egg=niworkflows
3+
git+https://github.com/poldracklab/smriprep.git@f1cfc37bcdc346549dbf1d037cdade3a3b32d5de#egg=smriprep
44
templateflow<0.2.0a0,>=0.1.3

0 commit comments

Comments
 (0)