Skip to content

Commit 30b3c5d

Browse files
committed
pylock points to pypi
1 parent cb03898 commit 30b3c5d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/github_workflows_build-all_3.13.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,10 @@ jobs:
283283
& "$env:build_location\python\python.exe" -X utf8 -c "from wppm import wheelhouse as wh; wh.pylock_to_req(r'$destfile_pylock', r'$outreq')"
284284
285285
if ($env:WINPYrequirementswhl -eq "") {
286-
& "$env:build_location\python\python.exe" -m pip freeze | Out-File -FilePath dotpython\freezewheel.txt
286+
Write-Output "No additional wheelhouse requirements."
287+
} else {
287288
$destfile_pylockwheel = "publish_output\pylock.$env:WINPYARCH-$($env:WINPYVER -replace '\.', '_')_wheels.toml"
288-
& "$env:build_location\python\python.exe" -m pip lock --no-deps --find-links=$env:destwheelhouse -r dotpython\freezewheel.txt -o $destfile_pylockwheel
289+
& "$env:build_location\python\python.exe" -m pip lock --no-deps --require-hashes -r $env:WINPYrequirementswhl -o $destfile_pylockwheel
289290
290291
$outreqwheel = "publish_output\requir.$env:WINPYARCH-$($env:WINPYVER -replace '\.', '_')_wheels.txt"
291292
& "$env:build_location\python\python.exe" -X utf8 -c "from wppm import wheelhouse as wh; wh.pylock_to_req(r'$destfile_pylockwheel', r'$outreqwheel')"

0 commit comments

Comments
 (0)