Skip to content

Commit b4fee8e

Browse files
authored
Merge pull request #1213 from SylvainCorlay/upgrade-mamba
Upgrade to mamba 1.0
2 parents ecd7c5d + 3e5a64f commit b4fee8e

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=0.25.0
8+
export MAMBA_VERSION=1.0.0
99
export CONDA_VERSION=4.13.0
1010

1111
URL="https://anaconda.org/conda-forge/micromamba/${MAMBA_VERSION}/download/linux-64/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
@@ -5,12 +5,12 @@ from subprocess import check_output
55
assert sys.version_info[:2] == (3, 5), sys.version
66

77
out = check_output(["micromamba", "--version"]).decode("utf8").strip()
8-
assert out == "0.25.0", out
8+
assert out == "1.0.0", out
99

1010
out = check_output(["mamba", "--version"]).decode("utf8").strip()
1111
assert (
1212
out
13-
== """mamba 0.25.0
13+
== """mamba 1.0.0
1414
conda 4.13.0"""
1515
), out
1616

0 commit comments

Comments
 (0)