From e5eb254494adf15c788a5fd2860edccbb2ca65f5 Mon Sep 17 00:00:00 2001 From: Julien Jerphanion Date: Tue, 10 Dec 2024 17:45:17 +0100 Subject: [PATCH] Update to mamba 1.5.11 Signed-off-by: Julien Jerphanion --- repo2docker/buildpacks/conda/install-base-env.bash | 4 ++-- tests/conda/py35-binder-dir/verify | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/repo2docker/buildpacks/conda/install-base-env.bash b/repo2docker/buildpacks/conda/install-base-env.bash index 4eb93f00..8bcc8c98 100755 --- a/repo2docker/buildpacks/conda/install-base-env.bash +++ b/repo2docker/buildpacks/conda/install-base-env.bash @@ -5,8 +5,8 @@ set -ex cd $(dirname $0) -export MAMBA_VERSION=1.5.9 -export CONDA_VERSION=24.5.0 +export MAMBA_VERSION=1.5.11 +export CONDA_VERSION=24.11.0 URL="https://anaconda.org/conda-forge/micromamba/${MAMBA_VERSION}/download/${CONDA_PLATFORM}/micromamba-${MAMBA_VERSION}-0.tar.bz2" diff --git a/tests/conda/py35-binder-dir/verify b/tests/conda/py35-binder-dir/verify index ef166558..239a693c 100755 --- a/tests/conda/py35-binder-dir/verify +++ b/tests/conda/py35-binder-dir/verify @@ -16,12 +16,12 @@ v = out.split()[1] assert v[:3] == "3.5", out out = sh(["micromamba", "--version"]) -assert out == "1.5.9", out +assert out == "1.5.11", out out = sh(["mamba", "--version"]) assert ( out - == """mamba 1.5.9 + == """mamba 1.5.11 conda 24.5.0""" ), out