Skip to content

Commit

Permalink
Remove pip upgrade from windows sdist job (#879)
Browse files Browse the repository at this point in the history
The windows sdist install jobs have started failing on a permission
issue when trying to upgrade pip prior to installing from sdist. This
commit removes the pip upgrade because the base windows azure pipelines
image is now including pip 20.2.1 which is sufficiently new (being >19)
and upgrading isn't explicitly needed. This should avoid the potential
permissions issue replacing the pip.exe file on disk already.
  • Loading branch information
mtreinish authored Aug 11, 2020
1 parent 4846ce1 commit 96e5a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ stages:
set -x
set -e
source activate qiskit-aer
pip install -U pip setuptools virtualenv wheel
pip install -U setuptools virtualenv wheel
pip install dist/*tar.gz
pip install git+https://github.com/Qiskit/qiskit-terra
python tools/verify_wheels.py
Expand Down

0 comments on commit 96e5a84

Please sign in to comment.