From f6b2bd6f45f92334ba9b0b21f5565ec6fa6137b0 Mon Sep 17 00:00:00 2001 From: Ben Webb Date: Sat, 9 Nov 2024 20:20:54 -0800 Subject: [PATCH] Don't fail if conda is missing defaults channel --- support/setup_travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/setup_travis.sh b/support/setup_travis.sh index 01213ac..413d45f 100755 --- a/support/setup_travis.sh +++ b/support/setup_travis.sh @@ -13,7 +13,7 @@ python_version=$2 temp_dir=$(mktemp -d) # get conda-forge, not main, packages -conda config --remove channels defaults +conda config --remove channels defaults || : conda config --add channels conda-forge if [ ${imp_branch} = "develop" ]; then IMP_CONDA="imp-nightly"