File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
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
You can’t perform that action at this time.
0 commit comments