Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9a06ebe

Browse files
authored
Merge pull request #1933 from stonebig/master
resolve pip.exe not being there by default
2 parents 13d0cd6 + d819a5c commit 9a06ebe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/github_workflows_build-2025_05.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ jobs:
244244
if: env.WINPYREQUIREMENTS != ''
245245
shell: pwsh
246246
run: |
247-
& "$env:build_location\python\python.exe" -m pip install --upgrade pip
247+
& "$env:build_location\python\python.exe" -m pip install --upgrade --force-reinstall pip
248248
& "$env:build_location\python\python.exe" -m pip install --upgrade packaging==25.0
249249
& "$env:build_location\python\python.exe" -c "from wppm import wppm;dist=wppm.Distribution();dist.patch_standard_packages('pip', to_movable=True)"
250250

.github/workflows/github_workflows_build-2026_01.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ jobs:
180180
if: env.WINPYREQUIREMENTS != ''
181181
shell: pwsh
182182
run: |
183-
& "$env:build_location\python\python.exe" -m pip install --upgrade pip
183+
& "$env:build_location\python\python.exe" -m pip install --upgrade --force-reinstall pip
184184
& "$env:build_location\python\python.exe" -m pip install --upgrade packaging==25.0
185185
& "$env:build_location\python\python.exe" -c "from wppm import wppm;dist=wppm.Distribution();dist.patch_standard_packages('pip', to_movable=True)"
186186

winpython/portable/launchers_final/scripts/upgrade_pip.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
call "%~dp0env.bat"
33
echo this will upgrade pip with latest version, then patch it for WinPython portability ok ?
44
pause
5-
"%WINPYDIR%\python.exe" -m pip install --upgrade pip
5+
"%WINPYDIR%\python.exe" -m pip install --upgrade --force-reinstall pip
66
"%WINPYDIR%\python.exe" -c "from wppm import wppm;dist=wppm.Distribution(r'%WINPYDIR%');dist.patch_standard_packages('pip', to_movable=True)
77
pause

0 commit comments

Comments
 (0)