Commit b8b0460d authored by Fernando Perez's avatar Fernando Perez

Update package versions for both py2/py3and add h5py to base list.

parent b0ed0945
...@@ -23,42 +23,44 @@ USER jovyan ...@@ -23,42 +23,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
# R packages including IRKernel which gets installed globally. # R packages including IRKernel which gets installed globally.
......
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