From 9cbe8d599c0a830f2c7f00f366f562f2d32d9167 Mon Sep 17 00:00:00 2001 From: Nicholas Devenish Date: Wed, 2 Oct 2024 08:37:19 +0100 Subject: [PATCH] MNT: Pin old micromamba to avoid issue https://github.com/mamba-org/mamba/issues/3393 --- .azure-pipelines/bootstrap.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure-pipelines/bootstrap.py b/.azure-pipelines/bootstrap.py index 661e3b25d..a384e7973 100644 --- a/.azure-pipelines/bootstrap.py +++ b/.azure-pipelines/bootstrap.py @@ -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")