Skip to content

Commit

Permalink
Merge pull request #1337 from SylvainCorlay/mamba-1.5.7
Browse files Browse the repository at this point in the history
Update mamba to 1.5.7 from 1.5.1, and conda to 24.3.0 from 23.7.4
  • Loading branch information
consideRatio committed Mar 24, 2024
2 parents a20dd1c + 920ddd8 commit 755a32b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions repo2docker/buildpacks/conda/install-base-env.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ set -ex

cd $(dirname $0)

export MAMBA_VERSION=1.5.1
export CONDA_VERSION=23.7.4
export MAMBA_VERSION=1.5.7
export CONDA_VERSION=24.3.0

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

Expand Down
6 changes: 3 additions & 3 deletions tests/conda/py35-binder-dir/verify
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ v = out.split()[1]
assert v[:3] == "3.5", out

out = sh(["micromamba", "--version"])
assert out == "1.5.1", out
assert out == "1.5.7", out

out = sh(["mamba", "--version"])
assert (
out
== """mamba 1.5.1
conda 23.7.4"""
== """mamba 1.5.7
conda 24.3.0"""
), out

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

0 comments on commit 755a32b

Please sign in to comment.