We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bacdb5 commit b966089Copy full SHA for b966089
1 file changed
.github/workflows/build.yml
@@ -34,6 +34,8 @@ jobs:
34
CIBW_ARCHS_LINUX: ${{ runner.arch == 'X64' && 'auto ppc64le s390x' || 'auto' }}
35
# Need this to be >= 10.13 to support C++17 aligned allocations on Intel
36
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.os == 'macos-15-intel' && '10.13' || (startsWith(matrix.os, 'macos') && '11.0' || '') }}
37
+ # Only build Python 3.11+ on Windows 11 ARM
38
+ CIBW_BUILD: ${{ matrix.os == 'windows-11-arm' && 'cp311-* cp312-* cp313-* cp314-*' || '' }}
39
40
- name: Show files
41
run: ls -lh wheelhouse
0 commit comments