Skip to content

Commit 58e2a02

Browse files
authored
Merge pull request #778 from alasdairtran/upgrade-python-in-scipy-notebook-to-3.7
Upgrade Python in scipy-notebook to 3.7
2 parents 7d427e7 + f067ea1 commit 58e2a02

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

base-notebook/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ RUN cd /tmp && \
7979
$CONDA_DIR/bin/conda config --system --set show_channel_urls true && \
8080
$CONDA_DIR/bin/conda install --quiet --yes conda="${CONDA_VERSION%.*}.*" && \
8181
$CONDA_DIR/bin/conda update --all --quiet --yes && \
82+
conda list python | grep '^python ' | tr -s ' ' | cut -d '.' -f 1,2 | sed 's/$/.*/' >> $CONDA_DIR/conda-meta/pinned && \
8283
conda clean -tipsy && \
8384
rm -rf /home/$NB_USER/.cache/yarn && \
8485
fix-permissions $CONDA_DIR && \

tensorflow-notebook/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
77

88
# Install Tensorflow
99
RUN conda install --quiet --yes \
10-
'tensorflow=1.12*' \
10+
'tensorflow=1.13*' \
1111
'keras=2.2*' && \
1212
conda clean -tipsy && \
1313
fix-permissions $CONDA_DIR && \

0 commit comments

Comments
 (0)