From af59ef00883d4ef3a62a994ea6462775b9d48ca5 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Sun, 25 Jul 2021 11:09:54 +0300 Subject: [PATCH] Create miniforge3-latest --- .../share/python-build/miniforge3-latest | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 plugins/python-build/share/python-build/miniforge3-latest diff --git a/plugins/python-build/share/python-build/miniforge3-latest b/plugins/python-build/share/python-build/miniforge3-latest new file mode 100644 index 00000000..82a953f6 --- /dev/null +++ b/plugins/python-build/share/python-build/miniforge3-latest @@ -0,0 +1,25 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-ppc64le" ) + install_script "Miniforge3-Linux-ppc64le" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-ppc64le.sh" "miniconda" verify_py38 + ;; +"Linux-x86_64" ) + install_script "Miniforge3-Linux-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh" "miniconda" verify_py3_latest + ;; +"Linux-aarch64" ) + install_script "Miniforge3-Linux-aarch64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh" "miniconda" verify_py3_latest + ;; +"MacOSX-arm64" ) + install_script "Miniforge3-MacOSX-arm64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-arm64.sh" "miniconda" verify_py3_latest + ;; +"MacOSX-x86_64" ) + install_script "Miniforge3-MacOSX-x86_64" "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-x86_64.sh" "miniconda" verify_py3_latest + ;; +* ) + { echo + colorize 1 "ERROR" + echo ": The binary distribution of Miniforge is not available for $(anaconda_architecture 2>/dev/null || true)." + echo + } >&2 + exit 1 + ;; +esac