Skip to content

Commit 8935d26

Browse files
jswhit2jswhit2
authored andcommitted
attempt to fix wheel building logic (only wheels for 3.10 and 3.11 were being built)
1 parent a9d4e92 commit 8935d26

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/cibuildwheel.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,13 @@ jobs:
8282
# (3.11 is the oldest version for which we support abi3 wheels)
8383
# These needs to rotate every new Python release.
8484
run: |
85-
set -x
86-
echo "CIBW_BUILD=cp310-* cp311-* cp314-*" >> $GITHUB_ENV
87-
set +x
88-
89-
if: ${{ github.event_name }} == "pull_request"
85+
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
86+
CIBW_SKIP="cp311-* cp312-* cp313-* cp314t-* *musllinux*"
87+
else
88+
CIBW_SKIP="cp314t-* *musllinux_aarch64"
89+
fi
90+
echo "CIBW_SKIP=$CIBW_SKIP" >> $GITHUB_ENV
91+
echo "Setting CIBW_SKIP=$CIBW_SKIP"
9092
9193
- name: "Building ${{ matrix.os }} (${{ matrix.arch }}) wheels"
9294
uses: pypa/cibuildwheel@v3.2.0

0 commit comments

Comments
 (0)