From b4e8b8adf95ca22c3496cf620963326c24565833 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Wed, 9 Jun 2021 14:28:56 +0200 Subject: [PATCH] [bootstrap] Use apache2 reverse proxy instead of mirror --- 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 e21cecda..e0eea82f 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -454,13 +454,13 @@ if __name__ == "__main__": logger.info("(create) %s", condarc) with open(condarc, "wt") as f: # Replaces https://repo.anaconda.com/pkgs/main by - # http://www.idiap.ch/software/bob/defaults with so it is optimized for + # http://bobconda.lab.idiap.ch:8000, 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/pkgs/main", - "http://www.idiap.ch/defaults", + "https://repo.anaconda.com", + "http://bobconda.lab.idiap.ch:8000", ) ) -- GitLab