Skip to content

Commit 75a8bd7

Browse files
committed
Upgrade to mamba 1.1 and enable rich SAT error messages
1 parent 49162fc commit 75a8bd7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

repo2docker/buildpacks/conda/install-base-env.bash

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -ex
55

66
cd $(dirname $0)
77

8-
export MAMBA_VERSION=1.0.0
8+
export MAMBA_VERSION=1.1.0
99
export CONDA_VERSION=4.13.0
1010

1111
URL="https://anaconda.org/conda-forge/micromamba/${MAMBA_VERSION}/download/${CONDA_PLATFORM}/micromamba-${MAMBA_VERSION}-0.tar.bz2"
@@ -34,6 +34,7 @@ channels:
3434
auto_update_conda: false
3535
show_channel_urls: true
3636
update_dependencies: false
37+
experimental_sat_error_message: true
3738
# channel_priority: flexible
3839
EOT
3940

tests/conda/py35-binder-dir/verify

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ from subprocess import check_output
55
assert sys.version_info[:2] == (3, 5), sys.version
66

77
out = check_output(["micromamba", "--version"]).decode("utf8").strip()
8-
assert out == "1.0.0", out
8+
assert out == "1.1.0", out
99

1010
out = check_output(["mamba", "--version"]).decode("utf8").strip()
1111
assert (
1212
out
13-
== """mamba 1.0.0
13+
== """mamba 1.1.0
1414
conda 4.13.0"""
1515
), out
1616

0 commit comments

Comments
 (0)