diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index de2e4f3ab2ad4d97ef7ee5eb4cc873ef59766ab9..0798b08de9ededf55dc9f953f4c3892cb3c6cdc9 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", ) )