File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
repo2docker/buildpacks/conda
tests/conda/py35-binder-dir Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 5
5
6
6
cd $( dirname $0 )
7
7
8
- export MAMBA_VERSION=1.0 .0
8
+ export MAMBA_VERSION=1.1 .0
9
9
export CONDA_VERSION=4.13.0
10
10
11
11
URL=" https://anaconda.org/conda-forge/micromamba/${MAMBA_VERSION} /download/${CONDA_PLATFORM} /micromamba-${MAMBA_VERSION} -0.tar.bz2"
@@ -34,6 +34,7 @@ channels:
34
34
auto_update_conda: false
35
35
show_channel_urls: true
36
36
update_dependencies: false
37
+ experimental_sat_error_message: true
37
38
# channel_priority: flexible
38
39
EOT
39
40
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ from subprocess import check_output
5
5
assert sys .version_info [:2 ] == (3 , 5 ), sys .version
6
6
7
7
out = check_output (["micromamba" , "--version" ]).decode ("utf8" ).strip ()
8
- assert out == "1.0 .0" , out
8
+ assert out == "1.1 .0" , out
9
9
10
10
out = check_output (["mamba" , "--version" ]).decode ("utf8" ).strip ()
11
11
assert (
12
12
out
13
- == """mamba 1.0 .0
13
+ == """mamba 1.1 .0
14
14
conda 4.13.0"""
15
15
), out
16
16
You can’t perform that action at this time.
0 commit comments