Skip to content

Commit 14a392e

Browse files
committed
Merge branch 'bump-micromamba'
2 parents bb5874c + 0ff34ff commit 14a392e

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@ installation method we recommend in the [Nextstrain installation
2424
documentation](https://docs.nextstrain.org/page/install.html). In that case, a
2525
supported Python version is always bundled with `nextstrain`.
2626

27+
## Improvements
28+
29+
* The Conda runtime now uses Micromamba 1.5.8 (upgraded from 1.1.0) to manage
30+
the runtime environment. The newer version supports Zstandard-compressed
31+
index files which speeds up `nextstrain setup` and `nextstrain update` for
32+
the Conda runtime.
33+
([#367](https://github.com/nextstrain/cli/pull/367))
34+
35+
2736
# 8.3.0 (30 April 2024)
2837

2938
## Improvements

nextstrain/cli/runner/conda.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<https://anaconda.org/conda-forge/micromamba/>`__, or the special string
6868
``latest``.
6969
70-
Defaults to ``1.1.0``.
70+
Defaults to ``1.5.8``.
7171
"""
7272

7373
import json
@@ -100,7 +100,7 @@
100100

101101
# If you update the version pin below, please update the docstring above too.
102102
MICROMAMBA_VERSION = os.environ.get("NEXTSTRAIN_CONDA_MICROMAMBA_VERSION") \
103-
or "1.1.0"
103+
or "1.5.8"
104104

105105
NEXTSTRAIN_CHANNEL = os.environ.get("NEXTSTRAIN_CONDA_CHANNEL") \
106106
or "nextstrain"

0 commit comments

Comments
 (0)