From ca007177fd85afe0996f838be9e8509b15ab0b34 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 12 Mar 2026 10:00:19 +0100 Subject: [PATCH] feat: add riscv64 to wheel build matrix Add QEMU emulation for riscv64 and include riscv64 in the cibuildwheel arch list with appropriate platform excludes. --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b194aa42..a5be5e6c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -116,6 +116,12 @@ jobs: run: | brew install gnu-sed libtool autoconf automake + - name: Set up QEMU + if: matrix.cibw_arch == 'riscv64' + uses: docker/setup-qemu-action@v3 + with: + platforms: riscv64 + - uses: pypa/cibuildwheel@7c619efba910c04005a835b110b057fc28fd6e93 # v3.2.0 env: CIBW_BUILD_VERBOSITY: 1