File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -213,15 +213,13 @@ jobs:
213
213
echo "them to your fork with ``git push origin --tags``"
214
214
fi
215
215
# Build docker image
216
- e=1 && for i in {1..5}; do
217
- docker build --rm \
216
+ docker build --rm \
218
217
--cache-from=nipreps/sdcflows \
219
218
-t nipreps/sdcflows:latest \
220
219
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
221
220
--build-arg VCS_REF=`git rev-parse --short HEAD` \
222
221
--build-arg VERSION="${CIRCLE_TAG:-$THISVERSION}" . \
223
- && e=0 && break || sleep 15
224
- done && [ "$e" -eq "0" ]
222
+ | tee build-output.log
225
223
echo "${CIRCLE_TAG:-$THISVERSION}" >> /tmp/.local-version.txt
226
224
- run :
227
225
name : Docker push to local registry
Original file line number Diff line number Diff line change @@ -86,15 +86,15 @@ RUN conda install -y python=3.7.1 \
86
86
libxslt=1.1.32 \
87
87
matplotlib=2.2.2 \
88
88
mkl-service \
89
- mkl=2018.0.3 \
90
- numpy=1.15.4 \
91
- pandas=0.23.4 \
92
- scikit-learn=0.19.1 \
93
- scipy=1.1.0 \
89
+ mkl \
90
+ numpy=1.19 \
91
+ pip=20.3 \
92
+ scikit-learn=0.19 \
93
+ scipy=1.5 \
94
94
setuptools=44.0.0 \
95
- setuptools_scm=3.4.3 \
95
+ setuptools_scm=3.4 \
96
96
toml=0.10 \
97
- traits=4.6.0 \
97
+ traits=4.6 \
98
98
zlib; sync && \
99
99
chmod -R a+rX /usr/local/miniconda; sync && \
100
100
chmod +x /usr/local/miniconda/bin/*; sync && \
Original file line number Diff line number Diff line change @@ -31,8 +31,10 @@ install_requires =
31
31
nibabel >=3.0.1
32
32
nipype >=1.5.1,<2.0
33
33
niworkflows >= 1.4.0rc0
34
+ numpy <1.20; python_version < "3.7"
34
35
numpy
35
36
pybids >= 0.11.1
37
+ scikit-image
36
38
templateflow >= 0.6
37
39
test_requires =
38
40
codecov
You can’t perform that action at this time.
0 commit comments