Skip to content

Commit fcff268

Browse files
committed
Fix Python version for Windows linking
1 parent 4802d2f commit fcff268

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build-binaries.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Build Binaries
22
on:
3+
pull_request:
34
push:
45
branches:
56
- main
@@ -32,7 +33,9 @@ jobs:
3233
- if: ${{ !endsWith(matrix.os, '-arm') }}
3334
uses: actions/setup-python@v4
3435
with:
35-
python-version: "3.11"
36+
# Due to a yet-uninvestigated change in 3.11.6 that breaks the Rust
37+
# linker on Windows, we are pinning 3.11 to 3.11.5 here
38+
python-version: "3.11.5"
3639
- if: ${{ matrix.os == 'ubuntu-arm' }}
3740
uses: deadsnakes/[email protected]
3841
with:

0 commit comments

Comments
 (0)