From 2e57d616d5805179fddb50ec4672174daafc1c94 Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Thu, 15 Oct 2020 12:34:12 +0200 Subject: [PATCH] Fix broken code due to API change in get_channels --- bob/devtools/bootstrap.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index f3762f82..18726c4e 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -508,7 +508,8 @@ if __name__ == "__main__": run_cmdline([conda_bin, "index", conda_bld_path]) channels, _ = get_channels( public=True, stable=True, server=_SERVER, intranet=True, group="bob" - ) + ["defaults"] + ) + channels += ["defaults"] channels = ( ["--override-channels"] + ["--channel=" + conda_bld_path] -- GitLab