Skip to content

Commit 6c16f3b

Browse files
committed
ci: fix pypi build
1 parent 09bea07 commit 6c16f3b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pypi.yml

+4-4
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-14 ]
12+
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
1313
steps:
1414
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717
- name: Build wheels
1818
uses: pypa/[email protected]
1919
env:
20-
CIBW_SKIP: "cp36-* *-win32 *-manylinux_i686 *-musllinux_i686"
20+
CIBW_SKIP: "cp36-* cp37-* pp36-* pp37-*"
2121
- uses: actions/upload-artifact@v4
2222
with:
2323
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
@@ -28,15 +28,15 @@ jobs:
2828
- uses: actions/checkout@v4
2929
with:
3030
fetch-depth: 0
31-
- uses: abatilo/actions-poetry@v2
31+
- uses: abatilo/actions-poetry@v3
3232
- name: Build
3333
run: poetry build
3434
- uses: actions/upload-artifact@v4
3535
with:
3636
path: dist/*.tar.gz
3737
upload:
3838
runs-on: ubuntu-latest
39-
needs: [ build_wheels, build_sdist ]
39+
needs: [build_wheels, build_sdist]
4040
steps:
4141
- uses: actions/download-artifact@v4
4242
with:

0 commit comments

Comments
 (0)