Skip to content

Commit 0ff34ff

Browse files
runner.conda: Bump Micromamba from 1.1.0 → 1.5.8
Newer version includes Zstandard support (since 1.2.0). Resolves: <#366> Co-authored-by: Thomas Sibley <tsibley@fredhutch.org>
1 parent d3db45a commit 0ff34ff

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ development source code and as such may not be routinely kept up to date.
1313

1414
# __NEXT__
1515

16+
## Improvements
17+
18+
- The Conda runtime now uses Micromamba 1.5.8 (upgraded from 1.1.0) to manage
19+
the runtime environment. The newer version supports Zstandard-compressed
20+
index files which speeds up `nextstrain setup` and `nextstrain update` for
21+
the Conda runtime.
22+
([#367](https://github.com/nextstrain/cli/pull/367))
23+
1624

1725
# 8.3.0 (30 April 2024)
1826

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)