Commit 9f9907cf authored by Kyle Kelley's avatar Kyle Kelley

Merge pull request #122 from parente/update-py35-h5py

Bump python libs to match other images
parents 7d3b8b2c 3fd3850b
...@@ -66,23 +66,23 @@ USER jovyan ...@@ -66,23 +66,23 @@ USER jovyan
# Install Python 3 packages # Install Python 3 packages
RUN conda install --yes \ RUN conda install --yes \
'ipywidgets=4.0*' \ 'ipywidgets=4.1*' \
'pandas=0.17*' \ 'pandas=0.17*' \
'matplotlib=1.4*' \ 'matplotlib=1.5*' \
'scipy=0.16*' \ 'scipy=0.17*' \
'seaborn=0.6*' \ 'seaborn=0.7*' \
'scikit-learn=0.16*' \ 'scikit-learn=0.17*' \
&& conda clean -yt && conda clean -yt
# Install Python 2 packages # Install Python 2 packages and kernel spec
RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \ RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.0*' \ 'ipython=4.1*' \
'ipywidgets=4.0*' \ 'ipywidgets=4.1*' \
'pandas=0.17*' \ 'pandas=0.17*' \
'matplotlib=1.4*' \ 'matplotlib=1.5*' \
'scipy=0.16*' \ 'scipy=0.17*' \
'seaborn=0.6*' \ 'seaborn=0.7*' \
'scikit-learn=0.16*' \ 'scikit-learn=0.17*' \
pyzmq \ pyzmq \
&& conda clean -yt && conda clean -yt
......
...@@ -39,23 +39,23 @@ USER jovyan ...@@ -39,23 +39,23 @@ USER jovyan
# Install Python 3 packages # Install Python 3 packages
RUN conda install --yes \ RUN conda install --yes \
'ipywidgets=4.0*' \ 'ipywidgets=4.1*' \
'pandas=0.17*' \ 'pandas=0.17*' \
'matplotlib=1.4*' \ 'matplotlib=1.5*' \
'scipy=0.16*' \ 'scipy=0.17*' \
'seaborn=0.6*' \ 'seaborn=0.7*' \
'scikit-learn=0.16*' \ 'scikit-learn=0.17*' \
&& conda clean -yt && conda clean -yt
# Install Python 2 packages and kernel spec # Install Python 2 packages and kernel spec
RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \ RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.0*' \ 'ipython=4.1*' \
'ipywidgets=4.0*' \ 'ipywidgets=4.1*' \
'pandas=0.17*' \ 'pandas=0.17*' \
'matplotlib=1.4*' \ 'matplotlib=1.5*' \
'scipy=0.16*' \ 'scipy=0.17*' \
'seaborn=0.6*' \ 'seaborn=0.7*' \
'scikit-learn=0.16*' \ 'scikit-learn=0.17*' \
pyzmq \ pyzmq \
&& conda clean -yt && conda clean -yt
......
...@@ -8,42 +8,44 @@ USER jovyan ...@@ -8,42 +8,44 @@ USER jovyan
# Install Python 3 packages # Install Python 3 packages
RUN conda install --yes \ RUN conda install --yes \
'ipywidgets=4.0*' \ 'ipywidgets=4.1*' \
'pandas=0.17*' \ 'pandas=0.17*' \
'matplotlib=1.4*' \ 'matplotlib=1.5*' \
'scipy=0.16*' \ 'scipy=0.17*' \
'seaborn=0.6*' \ 'seaborn=0.7*' \
'scikit-learn=0.16*' \ 'scikit-learn=0.17*' \
'scikit-image=0.11*' \ 'scikit-image=0.11*' \
'sympy=0.7*' \ 'sympy=0.7*' \
'cython=0.22*' \ 'cython=0.23*' \
'patsy=0.4*' \ 'patsy=0.4*' \
'statsmodels=0.6*' \ 'statsmodels=0.6*' \
'cloudpickle=0.1*' \ 'cloudpickle=0.1*' \
'dill=0.2*' \ 'dill=0.2*' \
'numba=0.22*' \ 'numba=0.23*' \
'bokeh=0.10*' \ 'bokeh=0.11*' \
'h5py=2.5*' \
&& conda clean -yt && conda clean -yt
# Install Python 2 packages # Install Python 2 packages
RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \ RUN conda create -p $CONDA_DIR/envs/python2 python=2.7 \
'ipython=4.0*' \ 'ipython=4.1*' \
'ipywidgets=4.0*' \ 'ipywidgets=4.1*' \
'pandas=0.17*' \ 'pandas=0.17*' \
'matplotlib=1.4*' \ 'matplotlib=1.5*' \
'scipy=0.16*' \ 'scipy=0.17*' \
'seaborn=0.6*' \ 'seaborn=0.7*' \
'scikit-learn=0.16*' \ 'scikit-learn=0.17*' \
'scikit-image=0.11*' \ 'scikit-image=0.11*' \
'sympy=0.7*' \ 'sympy=0.7*' \
'cython=0.22*' \ 'cython=0.23*' \
'patsy=0.4*' \ 'patsy=0.4*' \
'statsmodels=0.6*' \ 'statsmodels=0.6*' \
'cloudpickle=0.1*' \ 'cloudpickle=0.1*' \
'dill=0.2*' \ 'dill=0.2*' \
'numba=0.22*' \ 'numba=0.23*' \
'bokeh=0.10*' \ 'bokeh=0.11*' \
pyzmq \ 'h5py=2.5*' \
'pyzmq' \
&& conda clean -yt && conda clean -yt
USER root USER root
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment