Skip to content

Commit

Permalink
Exclude all Python 3.8 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
genzgd committed Jan 25, 2025
1 parent 277bf92 commit c746207
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ on:
- release
- build
env:
CIBW_SKIP: 'cp36-* cp37-* pp37-*'
CIBW_SKIP: 'cp36-* cp37-* cp38-* pp37-*'

jobs:
build_x86_manylinux_wheels:
name: Build x86 manylinux wheels on Linux
runs-on: ubuntu-latest
env:
CIBW_SKIP: 'cp36-* cp37-* pp37-* *-musllinux*'
CIBW_SKIP: 'cp36-* cp37-* pp37-* pp38-* *-musllinux*'
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.22.0
- uses: actions/upload-artifact@v4
with:
name: build-x86-manylinux
Expand All @@ -33,11 +33,11 @@ jobs:
name: Build x86 musllinux wheels on Linux
runs-on: ubuntu-latest
env:
CIBW_SKIP: 'cp36-* cp37-* pp37-* *-manylinux*'
CIBW_SKIP: 'cp36-* cp37-* pp37-* pp38-* *-manylinux*'
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.22.0
- uses: actions/upload-artifact@v4
with:
name: build-x86-musllinux
Expand All @@ -56,7 +56,7 @@ jobs:
with:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.22.0
- uses: actions/upload-artifact@v4
with:
name: build-aarch64-manylinux
Expand All @@ -75,7 +75,7 @@ jobs:
with:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.22.0
- uses: actions/upload-artifact@v4
with:
name: build-aarch64-musllinux
Expand All @@ -94,7 +94,7 @@ jobs:
with:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.22.0
- uses: actions/upload-artifact@v4
with:
name: build-aarch64-pypy
Expand All @@ -106,7 +106,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.22.0
env:
CIBW_ARCHS_MACOS: x86_64 arm64
- uses: actions/upload-artifact@v4
Expand All @@ -122,7 +122,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v2.22.0
- uses: actions/upload-artifact@v4
with:
name: build-windows
Expand Down

0 comments on commit c746207

Please sign in to comment.