Skip to content

Commit 822938d

Browse files
authored
fix windows ci (#713)
1 parent 9407ab1 commit 822938d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-wheel.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ jobs:
185185
id: setup-python2
186186
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
187187
with:
188-
python-version: ${{ matrix.python-version }}
188+
# 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 }}
189190

190191
- name: Set up Python include paths
191192
run: |

0 commit comments

Comments
 (0)