From e3db6231489531851aa0ece1ebb79da0949c264e Mon Sep 17 00:00:00 2001 From: Julien Jerphanion Date: Wed, 21 Aug 2024 15:22:11 +0200 Subject: [PATCH] Update for mamba 1.5.8 Signed-off-by: Julien Jerphanion --- repo2docker/buildpacks/conda/install-base-env.bash | 4 ++-- tests/conda/py35-binder-dir/verify | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/repo2docker/buildpacks/conda/install-base-env.bash b/repo2docker/buildpacks/conda/install-base-env.bash index 4bd3add9..bfe2b828 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.7 -export CONDA_VERSION=24.3.0 +export MAMBA_VERSION=1.5.8 +export CONDA_VERSION=24.5.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 1f0ecc5f..42eb7e45 100755 --- a/tests/conda/py35-binder-dir/verify +++ b/tests/conda/py35-binder-dir/verify @@ -16,13 +16,13 @@ v = out.split()[1] assert v[:3] == "3.5", out out = sh(["micromamba", "--version"]) -assert out == "1.5.7", out +assert out == "1.5.8", out out = sh(["mamba", "--version"]) assert ( out - == """mamba 1.5.7 -conda 24.3.0""" + == """mamba 1.5.8 +conda 24.5.0""" ), out sh([kernel_python, "-c", "import numpy"])