From 24eaf5b956a082452b232534f6a6a83cdce07b81 Mon Sep 17 00:00:00 2001 From: Ben Webb Date: Thu, 7 Nov 2024 21:08:01 -0800 Subject: [PATCH] Don't fail if conda is missing defaults channel --- util/setup_ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/setup_ci.sh b/util/setup_ci.sh index 371a536..9f733f0 100755 --- a/util/setup_ci.sh +++ b/util/setup_ci.sh @@ -11,7 +11,7 @@ fi python_version=$1 # get conda-forge, not main, packages -conda config --remove channels defaults +conda config --remove channels defaults || : conda config --add channels conda-forge IMP_CONDA="imp"