Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
with:
platforms: arm64,riscv64
platforms: arm64,riscv64,ppc64le
- run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
- uses: pypa/cibuildwheel@7c619efba910c04005a835b110b057fc28fd6e93 # v3.2.0
env:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Unreleased

- Drop support for Python 3.9.
- Remove previously deprecated code.

- Build ppc64le wheels. :issue:`517`

Version 3.0.3
-------------
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,12 @@ select = "*-musllinux_riscv64"
# uv is not available
build-frontend = "build"

[[tool.cibuildwheel.overrides]]
select = "*-musllinux_ppc64le"
build-frontend = "build"

[tool.cibuildwheel.linux]
archs = ["x86_64", "aarch64", "riscv64"]
archs = ["x86_64", "aarch64", "riscv64", "ppc64le"]

[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
Expand Down