Skip to content

Commit 125ee3a

Browse files
authored
Merge pull request #1367 from jjerphan/update-mamba-1.5.8
Update for mamba 1.5.8
2 parents a61ec54 + e3db623 commit 125ee3a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ set -ex
55

66
cd $(dirname $0)
77

8-
export MAMBA_VERSION=1.5.7
9-
export CONDA_VERSION=24.3.0
8+
export MAMBA_VERSION=1.5.8
9+
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"
1212

tests/conda/py35-binder-dir/verify

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

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

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

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

0 commit comments

Comments
 (0)