Skip to content

Commit

Permalink
MNT: Pin old micromamba to avoid issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ndevenish committed Oct 2, 2024
1 parent efe7c26 commit 9cbe8d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .azure-pipelines/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ def install_micromamba(python):
"""Download and install Micromamba"""
if sys.platform.startswith("linux"):
member = "bin/micromamba"
url = "https://micromamba.snakepit.net/api/micromamba/linux-64/latest"
url = "https://micro.mamba.pm/api/micromamba/linux-64/1.5.10"
elif sys.platform == "darwin":
member = "bin/micromamba"
url = "https://micromamba.snakepit.net/api/micromamba/osx-64/latest"
url = "https://micro.mamba.pm/api/micromamba/osx-64/1.5.10"
elif os.name == "nt":
member = "Library/bin/micromamba.exe"
url = "https://micromamba.snakepit.net/api/micromamba/win-64/latest"
url = "https://micro.mamba.pm/api/micromamba/win-64/1.5.10"
else:
raise NotImplementedError(f"Unsupported platform {os.name} / {sys.platform}")
mamba_prefix = os.path.realpath("micromamba")
Expand Down

0 comments on commit 9cbe8d5

Please sign in to comment.