From 6868a2cb05fbf81e4d47c1d88ea9682c49cab9bf Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Mon, 12 Jul 2021 13:16:25 +0200 Subject: [PATCH] [bootstrap] Use http instead of https (faster and easier to maintain) --- bob/devtools/bootstrap.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index de2e4f3a..0798b08d 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -462,17 +462,17 @@ if __name__ == "__main__": condarc = os.path.join(args.conda_root, "condarc") logger.info("(create) %s", condarc) with open(condarc, "wt") as f: - # Replaces https://repo.anaconda.com and https://conda.anaconda.org by our - # mirrors, so it is optimized for a CI build. Notice we consider this - # script is only executed in this context. The URL should NOT work - # outside of Idiap's network. + # Replaces https://repo.anaconda.com and https://conda.anaconda.org by + # our proxies, so it is optimized for a CI build. Notice we consider + # this script is only executed in this context. The URL should NOT + # work outside of Idiap's network. f.write( _BASE_CONDARC.replace( "https://repo.anaconda.com", - "https://bobconda.lab.idiap.ch:8443", + "http://bobconda.lab.idiap.ch:8000", ).replace( "https://conda.anaconda.org", - "https://bobconda.lab.idiap.ch:9443", + "http://bobconda.lab.idiap.ch:9000", ) ) -- GitLab