Skip to content

Commit 3c1ed3c

Browse files
authored
Merge pull request #1423 from weiji14/mamba/2.0.8
Bump mamba from 2.0.5 to 2.1.0
2 parents d0ddd2e + d4592c2 commit 3c1ed3c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

repo2docker/buildpacks/conda/install-base-env.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -ex
55

66
cd $(dirname $0)
77

8-
export MAMBA_VERSION="2.0.5"
8+
export MAMBA_VERSION="2.1.0"
99
export CONDA_VERSION=24.11.0
1010

1111
URL="https://anaconda.org/conda-forge/micromamba/${MAMBA_VERSION}/download/${CONDA_PLATFORM}/micromamba-${MAMBA_VERSION}-0.tar.bz2"

tests/conda/py35-binder-dir/verify

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ v = out.split()[1]
1616
assert v[:3] == "3.5", out
1717

1818
out = sh(["micromamba", "--version"])
19-
assert out == "2.0.5", out
19+
assert out == "2.1.0", out
2020

2121
out = sh(["mamba", "--version"])
22-
assert out == "2.0.5", out
22+
assert out == "2.1.0", out
2323

2424

2525
sh([kernel_python, "-c", "import numpy"])

0 commit comments

Comments
 (0)