Skip to content

Commit a9806d2

Browse files
committed
Let the Python patch version float
1 parent 7c6232d commit a9806d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base-notebook/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ RUN cd /tmp && \
7171
$CONDA_DIR/bin/conda config --system --set show_channel_urls true && \
7272
$CONDA_DIR/bin/conda install --quiet --yes conda="${MINICONDA_VERSION%.*}.*" && \
7373
$CONDA_DIR/bin/conda update --all --quiet --yes && \
74-
conda list python | grep '^python ' | tr -s ' ' | cut -d ' ' -f 1,2 >> $CONDA_DIR/conda-meta/pinned && \
74+
conda list python | grep '^python ' | tr -s ' ' | cut -d '.' -f 1,2 | sed 's/$/.*/' >> $CONDA_DIR/conda-meta/pinned && \
7575
conda clean -tipsy && \
7676
rm -rf /home/$NB_USER/.cache/yarn && \
7777
fix-permissions $CONDA_DIR && \

0 commit comments

Comments
 (0)