Skip to content

Commit

Permalink
Update conda and mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainCorlay committed Jul 14, 2023
1 parent e0609ad commit a48bca1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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
4 changes: 2 additions & 2 deletions tests/conda/py35-binder-dir/verify
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ 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
== """mamba 1.4.9
conda 23.1.0"""
), out

Expand Down

0 comments on commit a48bca1

Please sign in to comment.