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 9407ab1 commit 822938dCopy full SHA for 822938d
.github/workflows/build-wheel.yml
@@ -185,7 +185,8 @@ jobs:
185
id: setup-python2
186
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
187
with:
188
- python-version: ${{ matrix.python-version }}
+ # workaround for actions/runner-images#12377 (the cached 3.13.4 is buggy on Windows)
189
+ python-version: ${{ matrix.python-version == '3.13' && '3.13.5' || matrix.python-version }}
190
191
- name: Set up Python include paths
192
run: |
0 commit comments