From 1955d2885bbbca5a0366ea4fd7a5f4cd72427d8e Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Tue, 12 Dec 2023 15:54:35 +0000 Subject: [PATCH] Replace discouraged Mambaforge with Miniforge3 As mentioned on https://github.com/conda-forge/miniforge : With the release of Miniforge3-23.3.1-0, the packages and configuration of Mambaforge and Miniforge3 are now identical. The only difference between the two is the name of the installer and, subsequently, the default installation directory. Given its wide usage, there are no plans to deprecate Mambaforge. If at some point we decide to deprecate Mambaforge, it will be appropriately announced and communicated with sufficient time in advance. As of September 2023, the new usage of Mambaforge is thus discouraged. Bug reports specific to Mambaforge will be closed as won't fix. --- lib/galaxy/tool_util/deps/conda_util.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/galaxy/tool_util/deps/conda_util.py b/lib/galaxy/tool_util/deps/conda_util.py index f91203923cd2..e1db27e5f067 100644 --- a/lib/galaxy/tool_util/deps/conda_util.py +++ b/lib/galaxy/tool_util/deps/conda_util.py @@ -56,15 +56,15 @@ def conda_link() -> str: if IS_OS_X: if "arm64" in platform.platform(): - url = "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-arm64.sh" + url = "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-arm64.sh" else: - url = "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-x86_64.sh" + url = "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-x86_64.sh" else: if sys.maxsize > 2**32: if "arm64" in platform.platform(): - url = "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-aarch64.sh" + url = "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh" else: - url = "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh" + url = "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh" else: url = "https://repo.anaconda.com/miniconda/Miniconda3-4.5.12-Linux-x86.sh" return url