We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e8ef22 commit 2859c80Copy full SHA for 2859c80
1 file changed
.github/workflows/github_workflows_build-2026_01.yml
@@ -262,9 +262,12 @@ jobs:
262
shell: pwsh
263
run: |
264
& "$env:build_location\python\python.exe" -m pip download --dest $env:dotwheelhouse --no-deps --require-hashes -r $env:WINPYREQUIREMENTS
265
- if ($env.WINPYREQUIREMENTSwhl -ne "") {
266
- & "$env:build_location\python\python.exe" -m pip download --dest $env:destwheelhouse --no-deps --require-hashes -r $env:WINPYREQUIREMENTSwhl
267
- }
+
+ - name: Download requirements to $env:dotwheelhouse
+ if: env.WINPYREQUIREMENTSwhl != ''
268
+ shell: pwsh
269
+ run: |
270
+ & "$env:build_location\python\python.exe" -m pip download --dest $env:destwheelhouse --no-deps --require-hashes -r $env:WINPYREQUIREMENTSwhl
271
272
- name: Install requirements
273
if: env.WINPYREQUIREMENTS != ''
0 commit comments