We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9d4e92 commit 8935d26Copy full SHA for 8935d26
1 file changed
.github/workflows/cibuildwheel.yml
@@ -82,11 +82,13 @@ jobs:
82
# (3.11 is the oldest version for which we support abi3 wheels)
83
# These needs to rotate every new Python release.
84
run: |
85
- set -x
86
- echo "CIBW_BUILD=cp310-* cp311-* cp314-*" >> $GITHUB_ENV
87
- set +x
88
-
89
- if: ${{ github.event_name }} == "pull_request"
+ if [[ "${{ github.event_name }}" == "pull_request" ]]; then
+ CIBW_SKIP="cp311-* cp312-* cp313-* cp314t-* *musllinux*"
+ else
+ CIBW_SKIP="cp314t-* *musllinux_aarch64"
+ fi
90
+ echo "CIBW_SKIP=$CIBW_SKIP" >> $GITHUB_ENV
91
+ echo "Setting CIBW_SKIP=$CIBW_SKIP"
92
93
- name: "Building ${{ matrix.os }} (${{ matrix.arch }}) wheels"
94
uses: pypa/cibuildwheel@v3.2.0
0 commit comments