diff --git a/repo2docker/buildpacks/conda/install-base-env.bash b/repo2docker/buildpacks/conda/install-base-env.bash index 4bd3add9..91284116 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="2.2.0rc2" +export CONDA_VERSION=24.7.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..d98403cd 100755 --- a/tests/conda/py35-binder-dir/verify +++ b/tests/conda/py35-binder-dir/verify @@ -21,8 +21,8 @@ assert out == "1.5.7", out out = sh(["mamba", "--version"]) assert ( out - == """mamba 1.5.7 -conda 24.3.0""" + == """mamba 2.2.0rc2 +conda 24.7.0""" ), out sh([kernel_python, "-c", "import numpy"])