From 691422b6ca38e3ad2360adab7516eb048264af80 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Thu, 6 May 2021 14:46:20 +0300 Subject: [PATCH] Update miniforge to 4.10.1 and python version to 3.9.2 --- base-notebook/Dockerfile | 4 ++-- base-notebook/test/test_python.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index a3422dd3..329a3f99 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -24,7 +24,7 @@ USER root # (ARGS are in lower case to distinguish them from ENV) # Check https://github.com/conda-forge/miniforge/releases # Conda version -ARG conda_version="4.10.0" +ARG conda_version="4.10.1" # Miniforge installer patch version ARG miniforge_patch_number="0" # Miniforge installer architecture @@ -39,7 +39,7 @@ ARG miniforge_version="${conda_version}-${miniforge_patch_number}" # Miniforge installer ARG miniforge_installer="${miniforge_python}-${miniforge_version}-Linux-${miniforge_arch}.sh" # Miniforge checksum -ARG miniforge_checksum="c56cc2da96043688c6bdb521d825de27754de0a342d5228ba3155cd94532ff75" +ARG miniforge_checksum="d4065b376f81b83cfef0c7316f97bb83337e4ae27eb988828363a578226e3a62" # Install all OS dependencies for notebook server that starts but lacks all # features (e.g., download as all possible file formats) diff --git a/base-notebook/test/test_python.py b/base-notebook/test/test_python.py index f36b748e..3e35d2b8 100644 --- a/base-notebook/test/test_python.py +++ b/base-notebook/test/test_python.py @@ -7,7 +7,7 @@ from packaging import version LOGGER = logging.getLogger(__name__) -def test_python_version(container, python_next_version="3.9"): +def test_python_version(container, python_next_version="3.10"): """Check that python version is lower than the next version""" LOGGER.info(f"Checking that python version is lower than {python_next_version}") c = container.run(tty=True, command=["start.sh"])