From 0aeb61b2dc1564bd6bc5f314533107071beff91c Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Thu, 30 Sep 2021 22:30:11 +0200 Subject: [PATCH] Always use the correct channels in base_build --- bob/devtools/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bob/devtools/build.py b/bob/devtools/build.py index e91b29c9..d5908c20 100644 --- a/bob/devtools/build.py +++ b/bob/devtools/build.py @@ -654,8 +654,8 @@ def base_build( add_dependent_channels=True, ) - if "channels" not in condarc_options: - condarc_options["channels"] = channels + # alays use the correct channel list: stable and public + condarc_options["channels"] = channels logger.info( "Using the following channels during (potential) build:\n - %s", -- GitLab