Update to mamba 1.4.0 and conda 23.1.0

pull/1256/head
Sylvain Corlay 2023-03-23 16:45:57 +01:00
rodzic 21fa80fad6
commit de908c9213
2 zmienionych plików z 5 dodań i 6 usunięć

Wyświetl plik

@ -5,8 +5,8 @@ set -ex
cd $(dirname $0)
export MAMBA_VERSION=1.1.0
export CONDA_VERSION=4.13.0
export MAMBA_VERSION=1.4.0
export CONDA_VERSION=23.1.0
URL="https://anaconda.org/conda-forge/micromamba/${MAMBA_VERSION}/download/${CONDA_PLATFORM}/micromamba-${MAMBA_VERSION}-0.tar.bz2"
@ -34,7 +34,6 @@ channels:
auto_update_conda: false
show_channel_urls: true
update_dependencies: false
experimental_sat_error_message: true
# channel_priority: flexible
EOT

Wyświetl plik

@ -16,13 +16,13 @@ v = out.split()[1]
assert v[:3] == "3.5", out
out = sh(["micromamba", "--version"])
assert out == "1.1.0", out
assert out == "1.4.0", out
out = sh(["mamba", "--version"])
assert (
out
== """mamba 1.1.0
conda 4.13.0"""
== """mamba 1.4.0
conda 23.1.0"""
), out
sh([kernel_python, "-c", "import numpy"])