Skip to content

Commit

Permalink
Merge branch 'bump-micromamba'
Browse files Browse the repository at this point in the history
  • Loading branch information
tsibley committed May 9, 2024
2 parents bb5874c + 0ff34ff commit 14a392e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ installation method we recommend in the [Nextstrain installation
documentation](https://docs.nextstrain.org/page/install.html). In that case, a
supported Python version is always bundled with `nextstrain`.

## Improvements

* The Conda runtime now uses Micromamba 1.5.8 (upgraded from 1.1.0) to manage
the runtime environment. The newer version supports Zstandard-compressed
index files which speeds up `nextstrain setup` and `nextstrain update` for
the Conda runtime.
([#367](https://github.com/nextstrain/cli/pull/367))


# 8.3.0 (30 April 2024)

## Improvements
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.1.0``.
Defaults to ``1.5.8``.
"""

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.1.0"
or "1.5.8"

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

0 comments on commit 14a392e

Please sign in to comment.