Skip to content

Commit 38ad7fb

Browse files
committed
make dockerfile python 3.6 compatible
1 parent 63be3f4 commit 38ad7fb

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,16 @@ RUN conda config --add channels conda-forge --add channels intel && \
6060
conda update -q conda && \
6161
chmod +x /usr/local/miniconda/bin/*; sync && \
6262
conda install -y python=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR} \
63-
mkl=2017.0.1 \
64-
numpy=1.11.2 \
65-
scipy=0.18.1 \
66-
scikit-learn=0.17.1 \
67-
matplotlib=1.5.3 \
68-
pandas=0.19.0 \
69-
libxml2=2.9.4 \
70-
libxslt=1.1.29 \
63+
mkl \
64+
numpy \
65+
scipy \
66+
scikit-learn \
67+
matplotlib \
68+
pandas \
69+
libxml2 \
70+
libxslt \
7171
traits=4.6.0 \
72-
psutil=5.0.1 \
72+
psutil \
7373
icu=58.1 && \
7474
find /usr/local/miniconda/ -exec chmod 775 {} +
7575

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies:
3939
timeout: 6000
4040
- e=1 && for i in {1..5}; do docker build --rm=false -t nipype/nipype:py27 --build-arg PYTHON_VERSION_MAJOR=2 --build-arg PYTHON_VERSION_MINOR=7 --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` --build-arg VCS_REF=`git rev-parse --short HEAD` --build-arg VERSION=$CIRCLE_TAG-py27 . && e=0 && break || sleep 15; done && [ "$e" -eq "0" ] :
4141
timeout: 6000
42-
- docker save -o $HOME/docker/cache.tar ubuntu:xenial-20161213 nipype/base:latest nipype/nipype:latest nipype/nipype_test:py27 nipype/nipype_test:py35 :
42+
- docker save -o $HOME/docker/cache.tar ubuntu:xenial-20161213 nipype/base:latest nipype/nipype:py35 nipype/nipype:py27 :
4343
timeout: 6000
4444

4545
test:

0 commit comments

Comments
 (0)