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 4802d2f commit fcff268Copy full SHA for fcff268
.github/workflows/build-binaries.yml
@@ -1,5 +1,6 @@
1
name: Build Binaries
2
on:
3
+ pull_request:
4
push:
5
branches:
6
- main
@@ -32,7 +33,9 @@ jobs:
32
33
- if: ${{ !endsWith(matrix.os, '-arm') }}
34
uses: actions/setup-python@v4
35
with:
- 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"
39
- if: ${{ matrix.os == 'ubuntu-arm' }}
40
uses: deadsnakes/[email protected]
41
0 commit comments