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 # Install Jupyter Notebook and Hub
RUN conda install --quiet --yes \ RUN conda install --quiet --yes \
'notebook=4.3*' \ 'notebook=4.4.*' \
jupyterhub=0.7 \ 'jupyterhub=0.7.*' \
&& conda clean -tipsy && conda clean -tipsy
USER root USER root

View File

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

View File

@@ -7,7 +7,7 @@ MAINTAINER Jupyter Project <jupyter@googlegroups.com>
USER $NB_USER USER $NB_USER
# Install Python 3 Tensorflow # 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 # 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*'