File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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')"
You can’t perform that action at this time.
0 commit comments