Skip to content

Commit

Permalink
Merge pull request #1367 from jjerphan/update-mamba-1.5.8
Browse files Browse the repository at this point in the history
Update for mamba 1.5.8
  • Loading branch information
manics authored Aug 21, 2024
2 parents a61ec54 + e3db623 commit 125ee3a
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.7
export CONDA_VERSION=24.3.0
export MAMBA_VERSION=1.5.8
export CONDA_VERSION=24.5.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.7", out
assert out == "1.5.8", out

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

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

0 comments on commit 125ee3a

Please sign in to comment.