From 0b52c8453e9e1f3d3a8cbdb563b480685be4dd96 Mon Sep 17 00:00:00 2001 From: Ogi Moore Date: Wed, 21 Oct 2020 20:48:19 -0700 Subject: [PATCH] prepend conda-forge channel prior to env creation (#1409) --- azure-test-template.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-test-template.yml b/azure-test-template.yml index 070281bb..326a7ea4 100644 --- a/azure-test-template.yml +++ b/azure-test-template.yml @@ -93,8 +93,6 @@ jobs: if [ $(install.method) == "conda" ] then conda update --all --yes --quiet - conda create --name test-environment-$(python.version) python=$(python.version) --yes --quiet - source activate test-environment-$(python.version) conda config --env --set always_yes true if [ $(python.version) == '2.7' ] then @@ -104,6 +102,8 @@ jobs: then conda config --prepend channels conda-forge fi + conda create --name test-environment-$(python.version) python=$(python.version) --yes --quiet + source activate test-environment-$(python.version) conda info conda install $(qt.bindings) numpy scipy pyopengl h5py six --yes --quiet pip install matplotlib