From 74da0d544fe4a2903e57c38a1fc45ee38eefbf5c Mon Sep 17 00:00:00 2001 From: Alasdair Tran Date: Tue, 25 Dec 2018 11:41:44 +1100 Subject: [PATCH] Let the Python patch version float --- base-notebook/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index c857f37e..04b0bd08 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -79,7 +79,7 @@ RUN cd /tmp && \ $CONDA_DIR/bin/conda config --system --set show_channel_urls true && \ $CONDA_DIR/bin/conda install --quiet --yes conda="${CONDA_VERSION%.*}.*" && \ $CONDA_DIR/bin/conda update --all --quiet --yes && \ - conda list python | grep '^python ' | tr -s ' ' | cut -d ' ' -f 1,2 >> $CONDA_DIR/conda-meta/pinned && \ + conda list python | grep '^python ' | tr -s ' ' | cut -d '.' -f 1,2 | sed 's/$/.*/' >> $CONDA_DIR/conda-meta/pinned && \ conda clean -tipsy && \ rm -rf /home/$NB_USER/.cache/yarn && \ fix-permissions $CONDA_DIR && \