Merge pull request #1232 from SylvainCorlay/experimentat-sat-error-messages

Upgrade to mamba 1.1 and enable rich SAT error messages
pull/1238/head
Min RK 2023-02-02 10:09:30 +01:00 zatwierdzone przez GitHub
commit 45b5080f88
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

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

Wyświetl plik

@ -5,12 +5,12 @@ from subprocess import check_output
assert sys.version_info[:2] == (3, 5), sys.version
out = check_output(["micromamba", "--version"]).decode("utf8").strip()
assert out == "1.0.0", out
assert out == "1.1.0", out
out = check_output(["mamba", "--version"]).decode("utf8").strip()
assert (
out
== """mamba 1.0.0
== """mamba 1.1.0
conda 4.13.0"""
), out