@@ -59,17 +59,17 @@ jobs:
59
59
-
60
60
name : Set Python base packages
61
61
run : |
62
- pip install --upgrade setuptools wheel
62
+ python -m pip install --upgrade pip setuptools wheel
63
63
-
64
64
name : Install lint requirements
65
65
run : |
66
66
cd ${{ env.PKGDIR }}
67
- pip install -r requirements-lint.txt
67
+ python -m pip install -r requirements-lint.txt
68
68
-
69
69
name : Install library requirements
70
70
run : |
71
71
cd ${{ env.PKGDIR }}
72
- pip install -r requirements.txt
72
+ python -m pip install -r requirements.txt
73
73
-
74
74
name : Run Flake8
75
75
run : |
@@ -175,7 +175,7 @@ jobs:
175
175
-
176
176
name : Set Python base packages
177
177
run : |
178
- pip install --upgrade setuptools wheel
178
+ python -m pip install --upgrade pip setuptools wheel
179
179
-
180
180
name : Build old numpy from source
181
181
run : |
@@ -186,7 +186,7 @@ jobs:
186
186
default { Set-Variable -Name "pkgvers" -Value "1.23.3" }
187
187
}
188
188
$env:SETUPTOOLS_USE_DISTUTILS = "stdlib"
189
- pip install "numpy == ${pkgvers}"
189
+ python -m pip install "numpy == ${pkgvers}"
190
190
-
191
191
name : Download GEOS artifacts
192
192
uses : actions/download-artifact@v1
@@ -198,9 +198,9 @@ jobs:
198
198
run : |
199
199
cd ${{ env.PKGDIR }}
200
200
$env:GEOS_DIR = "$env:GITHUB_WORKSPACE/${{ env.PKGDIR }}/extern"
201
- pip install -r requirements-setup.txt
201
+ python -m pip install -r requirements-setup.txt
202
202
python setup.py sdist
203
- pip wheel -w dist --no-deps (Get-Item dist/*.zip)
203
+ python -m pip wheel -w dist --no-deps (Get-Item dist/*.zip)
204
204
-
205
205
name : Upload build artifacts
206
206
uses : actions/upload-artifact@v1
@@ -229,7 +229,7 @@ jobs:
229
229
-
230
230
name : Set Python base packages
231
231
run : |
232
- pip install --upgrade setuptools wheel
232
+ python -m pip install --upgrade pip setuptools wheel
233
233
-
234
234
name : Download build artifacts
235
235
uses : actions/download-artifact@v1
@@ -239,7 +239,7 @@ jobs:
239
239
-
240
240
name : Install package
241
241
run : |
242
- pip install (Get-Item ${{ env.PKGDIR }}/dist/*-win*.whl)
242
+ python -m pip install (Get-Item ${{ env.PKGDIR }}/dist/*-win*.whl)
243
243
-
244
244
name : Test package
245
245
run : |
@@ -274,7 +274,7 @@ jobs:
274
274
-
275
275
name : Install upload requirements
276
276
run : |
277
- pip install twine
277
+ python -m pip install twine
278
278
-
279
279
name : Upload distributables
280
280
env :
0 commit comments