Skip to content

Commit

Permalink
Use micromamba 1.5.10 to avoid issues with 2.0+ until stable
Browse files Browse the repository at this point in the history
  • Loading branch information
romain-intel committed Nov 10, 2024
1 parent f42645d commit 16f8347
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: mamba-org/setup-micromamba@f8b8a1e23a26f60a44c853292711bacfd3eac822 # v1.9.0
with:
micromamba-version: latest
micromamba-version: 1.5.10
environment-file: dev-env.yml
init-shell: bash
create-args: >-
Expand Down
2 changes: 1 addition & 1 deletion metaflow_extensions/netflix_ext/plugins/conda/conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -1846,7 +1846,7 @@ def _ensure_micromamba(self) -> str:
"if ! type micromamba >/dev/null 2>&1; then "
"mkdir -p ~/.local/bin >/dev/null 2>&1; "
'python -c "import requests, bz2, sys; '
"data = requests.get('https://micro.mamba.pm/api/micromamba/%s/1.5.7').content; "
"data = requests.get('https://micro.mamba.pm/api/micromamba/%s/1.5.10').content; "
'sys.stdout.buffer.write(bz2.decompress(data))" | '
"tar -xv -C ~/.local/bin/ --strip-components=1 bin/micromamba > /dev/null 2>&1; "
"echo $HOME/.local/bin/micromamba; "
Expand Down

0 comments on commit 16f8347

Please sign in to comment.