File tree 1 file changed +7
-7
lines changed 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -52,19 +52,19 @@ pip-run: &pip-install
52
52
# Upgrade pip and setuptools and wheel to get as clean an install as possible
53
53
name : Upgrade pip, setuptools, wheel
54
54
command : |
55
- pip install --upgrade --user pip
56
- pip install --upgrade --user wheel
57
- pip install --upgrade --user setuptools
55
+ python -mpip install --upgrade --user pip
56
+ python -mpip install --upgrade --user wheel
57
+ python -mpip install --upgrade --user setuptools
58
58
59
59
deps-run : &deps-install
60
60
name : Install Python dependencies
61
61
command : |
62
- pip install --user numpy${NUMPY_VERSION} codecov coverage
63
- pip install --user -r doc-requirements.txt
62
+ python -mpip install --user numpy${NUMPY_VERSION} codecov coverage
63
+ python -mpip install --user -r doc-requirements.txt
64
64
65
65
mpl-run : &mpl-install
66
66
name : Install Matplotlib
67
- command : pip install --user -ve .
67
+ command : python -mpip install --user -ve .
68
68
69
69
doc-run : &doc-build
70
70
name : Build documentation
@@ -131,7 +131,7 @@ jobs:
131
131
NUMPY_VERSION : " ==1.7.1"
132
132
# Linkchecker only works with python 2.7 for the time being.
133
133
# Linkchecker is currently broken with requests 2.10.0 so force an earlier version.
134
- - run : pip install --user $PRE requests==2.9.2 linkchecker
134
+ - run : python -mpip install --user $PRE requests==2.9.2 linkchecker
135
135
- run : *mpl-install
136
136
137
137
- run : *doc-build
You can’t perform that action at this time.
0 commit comments