Skip to content

Commit 5bf26c4

Browse files
committed
Fix Windows CI.
1 parent f66656d commit 5bf26c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure-pipelines.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ steps:
4545
- bash: |
4646
set -x
4747
48-
pip install --upgrade pip setuptools &&
48+
python -mpip install --upgrade pip setuptools &&
4949
5050
case "$(python -c 'import sys; print(sys.platform)')" in
5151
linux)
@@ -75,10 +75,10 @@ steps:
7575
7676
python -mpip install dist/*.whl &&
7777
# matplotlib 3.2.0rc1 needed for tests to pass on Py3.8.
78-
pip install matplotlib==3.2.0rc1 &&
78+
python -mpip install matplotlib==3.2.0rc1 &&
7979
python tools/ensure-mpl-test-data.py &&
8080
# pytest-{instafail,timeout} useful for hanging tests.
81-
pip install pytest pytest-instafail pytest-timeout
81+
python -mpip install pytest pytest-instafail pytest-timeout
8282
8383
displayName: 'Build & install'
8484

0 commit comments

Comments
 (0)