From eeaba429df7784ce8b4cc96892173f0eb80b4e51 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Thu, 29 Aug 2019 14:36:32 -0500 Subject: [PATCH] Fix Py2 conda env generation in Azure --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b790c3b4..f90365b2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,7 +8,7 @@ jobs: - script: | set -e - sed 's/python=3/python<3/' .test-conda-env-py3.yml > .test-conda-env-py2.yml + sed 's/python=3/python=2.7/' .test-conda-env-py3.yml > .test-conda-env-py2.yml CONDA_ENVIRONMENT=.test-conda-env-py2.yml curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project-within-miniconda.sh . ./build-and-test-py-project-within-miniconda.sh -- GitLab