Skip to content

Commit 01d818b

Browse files
committed
Update to mamba 1.5.7
1 parent a20dd1c commit 01d818b

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.1
8+
export MAMBA_VERSION=1.5.7
99
export CONDA_VERSION=23.7.4
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.1", out
19+
assert out == "1.5.7", out
2020

2121
out = sh(["mamba", "--version"])
2222
assert (
2323
out
24-
== """mamba 1.5.1
24+
== """mamba 1.5.7
2525
conda 23.7.4"""
2626
), out
2727

0 commit comments

Comments
 (0)