From 14d2098787aca3ffabca4e30d691495f36538b7e Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Fri, 13 Dec 2019 10:37:09 -0500 Subject: [PATCH] Remove pip pin in azure jobs In the past we needed to pin the pip version we used in the ci jobs to avoid a pip regression introduced in pip 19.0. But that has since been fixed so pinning is no longer necessary. This commit updates the azure pipelines configuration to remove the pip pinning so we can use the latest version. --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 22c9907c09..d2385bbff3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -65,7 +65,7 @@ jobs: set -e source activate qiskit-aer-$(Build.BuildNumber) git clean -fdX - python -m pip install --disable-pip-version-check pip==18 + python -m pip install -U pip virtualenv setuptools pip install cython pip install git+https://github.com/Qiskit/qiskit-terra.git pip install --ignore-installed -r requirements-dev.txt