We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a2c152 commit be161cbCopy full SHA for be161cb
.github/workflows/build.yaml
@@ -122,15 +122,22 @@ jobs:
122
if: matrix.config.name == 'windows'
123
124
- name: Setup Python
125
- if: matrix.config.name != 'windows'
126
uses: actions/setup-python@v6
127
with:
128
python-version: '3.13'
129
130
- - name: Setup Python (Windows)
+ - name: launcher wrapper
131
132
shell: powershell
133
- run: choco install python313 -y
+ run: |
+ @'
134
+ @echo off
135
+ setlocal
136
+ set "args=%*"
137
+ set "args=%args:-3=%"
138
+ python %args%
139
+ '@ | Out-File -FilePath "$env:TEMP\py.cmd" -Encoding ASCII
140
+ echo "$env:TEMP" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
141
142
- name: Update submodule
143
run: |
0 commit comments