Update miniforge to 4.10.1 and python version to 3.9.2

This commit is contained in:
Ayaz Salikhov
2021-05-06 14:46:20 +03:00
parent bbe82cbf13
commit 691422b6ca
2 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ USER root
# (ARGS are in lower case to distinguish them from ENV) # (ARGS are in lower case to distinguish them from ENV)
# Check https://github.com/conda-forge/miniforge/releases # Check https://github.com/conda-forge/miniforge/releases
# Conda version # Conda version
ARG conda_version="4.10.0" ARG conda_version="4.10.1"
# Miniforge installer patch version # Miniforge installer patch version
ARG miniforge_patch_number="0" ARG miniforge_patch_number="0"
# Miniforge installer architecture # Miniforge installer architecture
@@ -39,7 +39,7 @@ ARG miniforge_version="${conda_version}-${miniforge_patch_number}"
# Miniforge installer # Miniforge installer
ARG miniforge_installer="${miniforge_python}-${miniforge_version}-Linux-${miniforge_arch}.sh" ARG miniforge_installer="${miniforge_python}-${miniforge_version}-Linux-${miniforge_arch}.sh"
# Miniforge checksum # Miniforge checksum
ARG miniforge_checksum="c56cc2da96043688c6bdb521d825de27754de0a342d5228ba3155cd94532ff75" ARG miniforge_checksum="d4065b376f81b83cfef0c7316f97bb83337e4ae27eb988828363a578226e3a62"
# Install all OS dependencies for notebook server that starts but lacks all # Install all OS dependencies for notebook server that starts but lacks all
# features (e.g., download as all possible file formats) # features (e.g., download as all possible file formats)

View File

@@ -7,7 +7,7 @@ from packaging import version
LOGGER = logging.getLogger(__name__) 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""" """Check that python version is lower than the next version"""
LOGGER.info(f"Checking that python version is lower than {python_next_version}") LOGGER.info(f"Checking that python version is lower than {python_next_version}")
c = container.run(tty=True, command=["start.sh"]) c = container.run(tty=True, command=["start.sh"])