Skip to content

Commit bf618ef

Browse files
authored
Merge pull request #1370 from SylvainCorlay/mamba-1.5.9
Update to mamba 1.5.9
2 parents cb5c517 + 0fb8d0c commit bf618ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -ex
55

66
cd $(dirname $0)
77

8-
export MAMBA_VERSION=1.5.8
8+
export MAMBA_VERSION=1.5.9
99
export CONDA_VERSION=24.5.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

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

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

2121
out = sh(["mamba", "--version"])
2222
assert (
2323
out
24-
== """mamba 1.5.8
24+
== """mamba 1.5.9
2525
conda 24.5.0"""
2626
), out
2727

0 commit comments

Comments
 (0)