Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
# build wheels for ubuntu
- name: Build wheels for ubuntu
if: matrix.os == 'ubuntu-24.04'
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.0.0
env:
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.build }}
Expand All @@ -100,7 +100,7 @@ jobs:
# build wheels for ubuntu armv7l
- name: Build wheels for ubuntu armv7l
if: matrix.os == 'ubuntu-24.04-arm' && (matrix.arch == 'armv7l')
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.0.0
env:
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.build }}
Expand All @@ -114,7 +114,7 @@ jobs:
# build wheels for ubuntu aarch64
- name: Build wheels for ubuntu aarch64
if: matrix.os == 'ubuntu-24.04-arm' && (matrix.arch == 'aarch64')
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.0.0
env:
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.build }}
Expand All @@ -127,7 +127,7 @@ jobs:
# build wheels for windows
- name: Build wheels for windows
if: matrix.os == 'windows-2025' && (matrix.arch == 'AMD64' || matrix.arch == 'x86')
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.0.0
env:
CIBW_ARCHS_WINDOWS: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.build }}
Expand All @@ -141,7 +141,7 @@ jobs:

- name: Build wheels for windows ARM64
if: matrix.os == 'windows-11-arm' && matrix.arch == 'ARM64'
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.0.0
env:
CIBW_ARCHS_WINDOWS: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.build }}
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:

- name: Build wheels for macos x86_64
if: matrix.os == 'macos-15-intel' && matrix.arch == 'x86_64'
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.0.0
env:
CIBW_ARCHS_MACOS: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.build }}
Expand All @@ -238,7 +238,7 @@ jobs:

- name: Build wheels for macos arm64
if: matrix.os == 'macos-15' && matrix.arch == 'arm64'
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.0.0
env:
CIBW_ARCHS_MACOS: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.build }}
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
platforms: all

- name: Build wheels with qemu
uses: pypa/cibuildwheel@v3.4.1
uses: pypa/cibuildwheel@v4.0.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Restore Python 3.8 wheel builds

In build_wheels_qemu_cp, the matrix still includes build_cp: cp38, so this upgraded action will run with CIBW_BUILD=cp38-${{ matrix.build_sub }}*. I checked cibuildwheel v4.0.0's release notes and options docs: v4.0.0 drops Python 3.8, supported identifiers now start at cp39, and no selected builds returns error code 3 unless allow-empty is set. That means both cp38 riscv64 jobs fail, and because upload_all needs build_wheels_qemu_cp, release publishing is blocked whenever this workflow runs; keep 3.4.1 for cp38 or remove/update the cp38 matrix/support metadata.

Useful? React with πŸ‘Β / πŸ‘Ž.

env:
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.build_cp }}-${{ matrix.build_sub }}*
Expand Down
Loading