Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ our broader "workflows as programs" endeavor.
that work is being done when checks take a second or two.
([#418](https://github.com/nextstrain/cli/pull/418))

* The Conda runtime now uses Micromamba 2.1.0 (upgraded from 1.5.8) to manage
the runtime environment. The newer version fixes the installation error for
packages that include the `_x86_64-microarch-level` virtual package dependency.
([#430](https://github.com/nextstrain/cli/pull/430))


# 9.0.0 (24 March 2025)

Expand Down
4 changes: 2 additions & 2 deletions nextstrain/cli/runner/conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<https://anaconda.org/conda-forge/micromamba/>`__, or the special string
``latest``.

Defaults to ``1.5.8``.
Defaults to ``2.1.0``.
"""

import json
Expand Down Expand Up @@ -100,7 +100,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.5.8"
or "2.1.0"

NEXTSTRAIN_CHANNEL = os.environ.get("NEXTSTRAIN_CONDA_CHANNEL") \
or "nextstrain"
Expand Down
Loading