Merge pull request #1256 from SylvainCorlay/mamba-1-4

Update to mamba 1.4.0
pull/1260/head
Yuvi Panda 2023-03-28 20:49:45 +05:30 zatwierdzone przez GitHub
commit 049320301c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
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"])