Skip to content

Commit 1fc4d0b

Browse files
committed
fix: update CIBW_SKIP to simplify Python version skipping
1 parent 3b078d0 commit 1fc4d0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
12+
os: [ubuntu-latest, windows-latest, macos-15-intel, macos-latest]
1313
steps:
1414
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717
- name: Build wheels
1818
uses: pypa/cibuildwheel@v2.23.3
1919
env:
20-
CIBW_SKIP: "cp36-* cp37-* pp36-* pp37-*"
20+
CIBW_SKIP: "cp36-* cp37-* pp*"
2121
- uses: actions/upload-artifact@v4
2222
with:
2323
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}

0 commit comments

Comments
 (0)