From 32a998c2bf685e1808397b63602c57a801535231 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Wed, 4 Aug 2021 17:46:34 +0200 Subject: [PATCH] [boostrap] Update miniconda installer to 4.10.3 --- bob/devtools/bootstrap.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index 0798b08d..a09f5db6 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -207,12 +207,12 @@ def ensure_miniconda_sh(): # WARNING: if you update this version, remember to update hashes below # AND our "mirror" in the internal webserver - path = "/miniconda/Miniconda3-py39_4.9.2-%s-x86_64.sh" + path = "/miniconda/Miniconda3-py39_4.10.3-%s-x86_64.sh" if platform.system() == "Darwin": - md5sum = "0658832393a50f5a578bcad825304886" + md5sum = "09bb30a9204ced74ce3c06762cb442fc" path = path % "MacOSX" else: - md5sum = "b4e46fcc8029e2cfa731b788f25b1d36" + md5sum = "8c69f65a4ae27fb41df0fe552b4a8a3b" path = path % "Linux" if os.path.exists("miniconda.sh"): -- GitLab