Skip to content

Commit 978fefc

Browse files
authored
Merge pull request #1465 from weiji14/mamba/2.3.2
Bump mamba from 2.1.0 to 2.3.3, conda from 24.11.0 to 25.9.1
2 parents 24211ec + fb72937 commit 978fefc

File tree

3 files changed

+5
-5
lines changed

3 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="2.1.0"
9-
export CONDA_VERSION=24.11.0
8+
export MAMBA_VERSION="2.3.3"
9+
export CONDA_VERSION="25.9.1"
1010

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

tests/conda/downgrade/verify

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ assert pkgs["xeus-cling"]["version"] == "0.6.0"
2424
# this may be brittle, but it's unlikely any of these old versions
2525
# of packages will be rebuilt
2626
# xeus-cling 0.6.0 pins xeus 0.20, which pins openssl 1.1.1,
27-
# which in turn downgrades Python from >=3.9.16 to 3.9.6
27+
# which in turn downgrades Python from >=3.9.16 to 3.9.0
2828

2929
assert pkgs["openssl"]["version"].startswith("1.1.1"), pkgs["openssl"]["version"]
3030
assert pkgs["python"]["version"] == "3.9.0", pkgs["python"]["version"]

tests/conda/py35-binder-dir/verify

Lines changed: 2 additions & 2 deletions
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.1.0", out
19+
assert out == "2.3.3", out
2020

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

2424

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

0 commit comments

Comments
 (0)