Skip to content

Commit 1955d28

Browse files
committed
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.
1 parent d474492 commit 1955d28

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/galaxy/tool_util/deps/conda_util.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@
5656
def conda_link() -> str:
5757
if IS_OS_X:
5858
if "arm64" in platform.platform():
59-
url = "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-arm64.sh"
59+
url = "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-arm64.sh"
6060
else:
61-
url = "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-x86_64.sh"
61+
url = "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-x86_64.sh"
6262
else:
6363
if sys.maxsize > 2**32:
6464
if "arm64" in platform.platform():
65-
url = "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-aarch64.sh"
65+
url = "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh"
6666
else:
67-
url = "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh"
67+
url = "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh"
6868
else:
6969
url = "https://repo.anaconda.com/miniconda/Miniconda3-4.5.12-Linux-x86.sh"
7070
return url

0 commit comments

Comments
 (0)