Skip to content

Commit 14ace34

Browse files
committed
ci: add support for new architectures
Add support for the new following architectures: - armv7l - ppc64le - riscv64 - s390x riscv64 support was added in cibuildwheel 3.1.2 [1], so we need a more recent version of it. Uses the current latest version which is 3.3.1 [1]: https://cibuildwheel.pypa.io/en/stable/changelog/#v312 Signed-off-by: Julien Stephan <jstephan@baylibre.com>
1 parent 3128f56 commit 14ace34

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
with:
5454
platforms: all
5555
- name: Build wheels
56-
uses: pypa/cibuildwheel@v2.22.0
56+
uses: pypa/cibuildwheel@v3.3.1
5757
env:
5858
BUILD_EXTENSION: yes
5959
- name: Save wheels

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ archs = ["x86_64", "universal2", "arm64"]
4646

4747
# On an Linux Intel runner with QEMU installed, build Intel and ARM wheels.
4848
[tool.cibuildwheel.linux]
49-
archs = ["auto", "aarch64"]
49+
archs = ["auto", "aarch64", "armv7l", "ppc64le", "riscv64", "s390x"]
5050

5151
[tool.coverage.run]
5252
branch = true

0 commit comments

Comments
 (0)