Merge pull request #350 from basnijholt/master

Bump all the package versions
This commit is contained in:
Peter Parente
2017-03-14 13:04:43 -04:00
committed by GitHub
3 changed files with 26 additions and 26 deletions

View File

@@ -69,8 +69,8 @@ RUN cd /tmp && \
# Install Jupyter Notebook and Hub
RUN conda install --quiet --yes \
'notebook=4.3*' \
jupyterhub=0.7 \
'notebook=4.4.*' \
'jupyterhub=0.7.*' \
&& conda clean -tipsy
USER root

View File

@@ -19,23 +19,23 @@ USER $NB_USER
# use notebook-friendly backends in these images
RUN conda install --quiet --yes \
'nomkl' \
'ipywidgets=5.2*' \
'ipywidgets=6.0*' \
'pandas=0.19*' \
'numexpr=2.6*' \
'matplotlib=1.5*' \
'scipy=0.17*' \
'matplotlib=2.0*' \
'scipy=0.19*' \
'seaborn=0.7*' \
'scikit-learn=0.18*' \
'scikit-image=0.11*' \
'scikit-image=0.12*' \
'sympy=1.0*' \
'cython=0.23*' \
'cython=0.25*' \
'patsy=0.4*' \
'statsmodels=0.6*' \
'cloudpickle=0.1*' \
'statsmodels=0.8*' \
'cloudpickle=0.2*' \
'dill=0.2*' \
'numba=0.23*' \
'bokeh=0.11*' \
'sqlalchemy=1.0*' \
'numba=0.31*' \
'bokeh=0.12*' \
'sqlalchemy=1.1*' \
'hdf5=1.8.17' \
'h5py=2.6*' \
'vincent=0.4.*' \
@@ -52,26 +52,26 @@ RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix
# use notebook-friendly backends in these images
RUN conda create --quiet --yes -p $CONDA_DIR/envs/python2 python=2.7 \
'nomkl' \
'ipython=4.2*' \
'ipywidgets=5.2*' \
'ipython=5.3*' \
'ipywidgets=6.0*' \
'pandas=0.19*' \
'numexpr=2.6*' \
'matplotlib=1.5*' \
'scipy=0.17*' \
'matplotlib=2.0*' \
'scipy=0.19*' \
'seaborn=0.7*' \
'scikit-learn=0.17*' \
'scikit-image=0.11*' \
'scikit-learn=0.18*' \
'scikit-image=0.12*' \
'sympy=1.0*' \
'cython=0.23*' \
'cython=0.25*' \
'patsy=0.4*' \
'statsmodels=0.6*' \
'cloudpickle=0.1*' \
'statsmodels=0.8*' \
'cloudpickle=0.2*' \
'dill=0.2*' \
'numba=0.23*' \
'bokeh=0.11*' \
'numba=0.31*' \
'bokeh=0.12*' \
'hdf5=1.8.17' \
'h5py=2.6*' \
'sqlalchemy=1.0*' \
'sqlalchemy=1.1*' \
'pyzmq' \
'vincent=0.4.*' \
'beautifulsoup4=4.5.*' \

View File

@@ -7,7 +7,7 @@ MAINTAINER Jupyter Project <jupyter@googlegroups.com>
USER $NB_USER
# Install Python 3 Tensorflow
RUN conda install --quiet --yes 'tensorflow=0.11.0'
RUN conda install --quiet --yes 'tensorflow=1.0*'
# Install Python 2 Tensorflow
RUN conda install --quiet --yes -n python2 'tensorflow=0.11.0'
RUN conda install --quiet --yes -n python2 'tensorflow=1.0*'