Skip to content

Commit

Permalink
Merge pull request #1299 from SylvainCorlay/update-mamba-1.4.9
Browse files Browse the repository at this point in the history
Update conda and mamba
  • Loading branch information
manics authored Jul 18, 2023
2 parents df111a0 + fbe7eba commit d414e99
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.4.0
export CONDA_VERSION=23.1.0
export MAMBA_VERSION=1.4.9
export CONDA_VERSION=23.5.2

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.4.0", out
assert out == "1.4.9", out

out = sh(["mamba", "--version"])
assert (
out
== """mamba 1.4.0
conda 23.1.0"""
== """mamba 1.4.9
conda 23.5.2"""
), out

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

0 comments on commit d414e99

Please sign in to comment.