From 8b0d810878df57ce7bf71ee6f26353cf10380c79 Mon Sep 17 00:00:00 2001 From: Peter Parente Date: Fri, 4 Dec 2015 22:36:51 -0500 Subject: [PATCH] Fix datascience-notebook build after pandas bump patsy, numba, bokeh all need upgrade to satisfy conda constraints (c) Copyright IBM Corp. 2015 --- datascience-notebook/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/datascience-notebook/Dockerfile b/datascience-notebook/Dockerfile index 1895ca84..76e375f1 100644 --- a/datascience-notebook/Dockerfile +++ b/datascience-notebook/Dockerfile @@ -31,12 +31,12 @@ RUN conda install --yes \ 'scikit-image=0.11*' \ 'sympy=0.7*' \ 'cython=0.22*' \ - 'patsy=0.3*' \ + 'patsy=0.4*' \ 'statsmodels=0.6*' \ 'cloudpickle=0.1*' \ 'dill=0.2*' \ - 'numba=0.20*' \ - 'bokeh=0.9*' \ + 'numba=0.22*' \ + 'bokeh=0.10*' \ && conda clean -yt # Install Python 2 packages @@ -51,12 +51,12 @@ RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \ 'scikit-image=0.11*' \ 'sympy=0.7*' \ 'cython=0.22*' \ - 'patsy=0.3*' \ + 'patsy=0.4*' \ 'statsmodels=0.6*' \ 'cloudpickle=0.1*' \ 'dill=0.2*' \ - 'numba=0.20*' \ - 'bokeh=0.9*' \ + 'numba=0.22*' \ + 'bokeh=0.10*' \ pyzmq \ && conda clean -yt