We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f66656d commit 5bf26c4Copy full SHA for 5bf26c4
azure-pipelines.yml
@@ -45,7 +45,7 @@ steps:
45
- bash: |
46
set -x
47
48
- pip install --upgrade pip setuptools &&
+ python -mpip install --upgrade pip setuptools &&
49
50
case "$(python -c 'import sys; print(sys.platform)')" in
51
linux)
@@ -75,10 +75,10 @@ steps:
75
76
python -mpip install dist/*.whl &&
77
# matplotlib 3.2.0rc1 needed for tests to pass on Py3.8.
78
- pip install matplotlib==3.2.0rc1 &&
+ python -mpip install matplotlib==3.2.0rc1 &&
79
python tools/ensure-mpl-test-data.py &&
80
# pytest-{instafail,timeout} useful for hanging tests.
81
- pip install pytest pytest-instafail pytest-timeout
+ python -mpip install pytest pytest-instafail pytest-timeout
82
83
displayName: 'Build & install'
84
0 commit comments