Skip to content

Commit f710996

Browse files
committedJan 2, 2020
FIX: Can't seem to import workflows from niflows in CircleCI
Master is broken -- this PR relocates the pip install of ``niflow-nipype1-workflows`` so that it happens AFTER nipype was installed.

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎docker/generate_dockerfiles.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function generate_main_dockerfile() {
9494
conda_install='python=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}
9595
libxml2 libxslt matplotlib mkl "numpy!=1.16.0" paramiko
9696
pandas psutil scikit-learn scipy traits rdflib' \
97-
pip_install="pytest-xdist niflow-nipype1-workflows" \
97+
pip_install="pytest-xdist" \
9898
activate=true \
9999
--copy docker/files/run_builddocs.sh docker/files/run_examples.sh \
100100
docker/files/run_pytests.sh nipype/external/fsl_imglob.py /usr/bin/ \
@@ -110,6 +110,8 @@ function generate_main_dockerfile() {
110110
--miniconda use_env=neuro \
111111
pip_opts="-e" \
112112
pip_install="/src/nipype[all] https://github.com/bids-standard/pybids/tarball/0.7.0" \
113+
--miniconda use_env=neuro \
114+
pip_install="niflow-nipype1-workflows" \
113115
--workdir /work \
114116
--label org.label-schema.build-date='$BUILD_DATE' \
115117
org.label-schema.name="NIPYPE" \

0 commit comments

Comments
 (0)
Please sign in to comment.