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
11 changes: 11 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ jobs:
os: ubuntu-24.04-arm
cibw_arch: aarch64
build: "*manylinux*"
- name: "manylinux_2_28 riscv64"
platform: linux
os: ubuntu-latest
cibw_arch: riscv64
build: "cp3{12,13}-manylinux*"
- name: "iOS arm64 device"
platform: ios
os: macos-latest
Expand All @@ -116,6 +121,12 @@ jobs:
with:
python-version: "3.x"

- name: Set up QEMU
if: matrix.cibw_arch == 'riscv64'
uses: docker/setup-qemu-action@v3
with:
platforms: riscv64

- name: Install cibuildwheel
run: |
python3 -m pip install -r .ci/requirements-cibw.txt
Expand Down
Loading