From 24e1b46529e74fd5ef6573283ae5d76a37bbc264 Mon Sep 17 00:00:00 2001 From: Jover Date: Tue, 25 Jul 2023 15:34:47 -0700 Subject: [PATCH] runner.conda: Bump Micromamba to 1.1.0 Resolves https://github.com/nextstrain/cli/issues/300 --- nextstrain/cli/runner/conda.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nextstrain/cli/runner/conda.py b/nextstrain/cli/runner/conda.py index 0d181444..fc35d727 100644 --- a/nextstrain/cli/runner/conda.py +++ b/nextstrain/cli/runner/conda.py @@ -34,7 +34,7 @@ `__, or the special string ``latest``. - Defaults to ``1.0.0``. + Defaults to ``1.1.0``. """ import json @@ -67,7 +67,7 @@ # If you update the version pin below, please update the docstring above too. MICROMAMBA_VERSION = os.environ.get("NEXTSTRAIN_CONDA_MICROMAMBA_VERSION") \ - or "1.0.0" + or "1.1.0" NEXTSTRAIN_CHANNEL = os.environ.get("NEXTSTRAIN_CONDA_CHANNEL") \ or "nextstrain"