Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mamba to 1.5.7 from 1.5.1, and conda to 24.3.0 from 23.7.4 #1337

Merged
merged 2 commits into from
Mar 24, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion repo2docker/buildpacks/conda/install-base-env.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -ex

cd $(dirname $0)

export MAMBA_VERSION=1.5.1
export MAMBA_VERSION=1.5.7
export CONDA_VERSION=23.7.4
consideRatio marked this conversation as resolved.
Show resolved Hide resolved

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.5.1", out
assert out == "1.5.7", out

out = sh(["mamba", "--version"])
assert (
out
== """mamba 1.5.1
== """mamba 1.5.7
conda 23.7.4"""
consideRatio marked this conversation as resolved.
Show resolved Hide resolved
), out

Expand Down
Loading