From 86ca164a11b862650383a2c8094dc113c370bad3 Mon Sep 17 00:00:00 2001 From: SouthWolf Date: Sun, 19 Dec 2021 23:43:01 +0800 Subject: [PATCH] Add Anaconda3-2021.11 (#2193) * Use verify_py39 since anaconda3-2021.11 is using python-3.9 according to release notes --- .../share/python-build/anaconda3-2021.11 | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 plugins/python-build/share/python-build/anaconda3-2021.11 diff --git a/plugins/python-build/share/python-build/anaconda3-2021.11 b/plugins/python-build/share/python-build/anaconda3-2021.11 new file mode 100644 index 00000000..b9ffb627 --- /dev/null +++ b/plugins/python-build/share/python-build/anaconda3-2021.11 @@ -0,0 +1,19 @@ +case "$(anaconda_architecture 2>/dev/null || true)" in +"Linux-ppc64le" ) + install_script "Anaconda3-2021.11-Linux-ppc64le" "https://repo.continuum.io/archive/Anaconda3-2021.11-Linux-ppc64le.sh#7eb6a95925ee756240818599f8dcbba7a155adfb05ef6cd5336aa3c083de65f3" "anaconda" verify_py39 + ;; +"Linux-x86_64" ) + install_script "Anaconda3-2021.11-Linux-x86_64" "https://repo.continuum.io/archive/Anaconda3-2021.11-Linux-x86_64.sh#fedf9e340039557f7b5e8a8a86affa9d299f5e9820144bd7b92ae9f7ee08ac60" "anaconda" verify_py39 + ;; +"MacOSX-x86_64" ) + install_script "Anaconda3-2021.11-MacOSX-x86_64" "https://repo.continuum.io/archive/Anaconda3-2021.11-MacOSX-x86_64.sh#6a9217d1a08c599f860045d56ef64fc6c3e3112b55cc97f3d07c573d7bbcdb58" "anaconda" verify_py39 + ;; +* ) + { echo + colorize 1 "ERROR" + echo ": The binary distribution of Anaconda3 is not available for $(anaconda_architecture 2>/dev/null || true)." + echo + } >&2 + exit 1 + ;; +esac