@@ -59,17 +59,17 @@ jobs:
5959 -
6060 name : Set Python base packages
6161 run : |
62- pip install --upgrade setuptools wheel
62+ python -m pip install --upgrade pip setuptools wheel
6363 -
6464 name : Install lint requirements
6565 run : |
6666 cd ${{ env.PKGDIR }}
67- pip install -r requirements-lint.txt
67+ python -m pip install -r requirements-lint.txt
6868 -
6969 name : Install library requirements
7070 run : |
7171 cd ${{ env.PKGDIR }}
72- pip install -r requirements.txt
72+ python -m pip install -r requirements.txt
7373 -
7474 name : Run Flake8
7575 run : |
@@ -175,7 +175,7 @@ jobs:
175175 -
176176 name : Set Python base packages
177177 run : |
178- pip install --upgrade setuptools wheel
178+ python -m pip install --upgrade pip setuptools wheel
179179 -
180180 name : Build old numpy from source
181181 run : |
@@ -186,7 +186,7 @@ jobs:
186186 default { Set-Variable -Name "pkgvers" -Value "1.23.3" }
187187 }
188188 $env:SETUPTOOLS_USE_DISTUTILS = "stdlib"
189- pip install "numpy == ${pkgvers}"
189+ python -m pip install "numpy == ${pkgvers}"
190190 -
191191 name : Download GEOS artifacts
192192 uses : actions/download-artifact@v1
@@ -198,9 +198,9 @@ jobs:
198198 run : |
199199 cd ${{ env.PKGDIR }}
200200 $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
202202 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)
204204 -
205205 name : Upload build artifacts
206206 uses : actions/upload-artifact@v1
@@ -229,7 +229,7 @@ jobs:
229229 -
230230 name : Set Python base packages
231231 run : |
232- pip install --upgrade setuptools wheel
232+ python -m pip install --upgrade pip setuptools wheel
233233 -
234234 name : Download build artifacts
235235 uses : actions/download-artifact@v1
@@ -239,7 +239,7 @@ jobs:
239239 -
240240 name : Install package
241241 run : |
242- pip install (Get-Item ${{ env.PKGDIR }}/dist/*-win*.whl)
242+ python -m pip install (Get-Item ${{ env.PKGDIR }}/dist/*-win*.whl)
243243 -
244244 name : Test package
245245 run : |
@@ -274,7 +274,7 @@ jobs:
274274 -
275275 name : Install upload requirements
276276 run : |
277- pip install twine
277+ python -m pip install twine
278278 -
279279 name : Upload distributables
280280 env :
0 commit comments