From 83dff71fb63cbe2787ed6db004727ee0d301e75e Mon Sep 17 00:00:00 2001 From: Xuehai Pan Date: Sun, 12 May 2024 23:31:16 +0800 Subject: [PATCH] feat(workflows): add Linux ppc64le and s390x wheels (#138) --- .github/workflows/build.yml | 8 ++++---- CHANGELOG.md | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 68133778..94d75969 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -135,10 +135,10 @@ jobs: platforms: all - name: Build wheels - uses: pypa/cibuildwheel@v2.17 + uses: pypa/cibuildwheel@v2.18 env: CIBW_BUILD: ${{ env.CIBW_BUILD }} - CIBW_ARCHS_LINUX: auto64 aarch64 + CIBW_ARCHS_LINUX: auto64 aarch64 ppc64le s390x CIBW_ARCHS_WINDOWS: auto64 ARM64 CIBW_ARCHS_MACOS: x86_64 arm64 universal2 with: @@ -199,10 +199,10 @@ jobs: platforms: all - name: Build wheels - uses: pypa/cibuildwheel@v2.17 + uses: pypa/cibuildwheel@v2.18 env: CIBW_BUILD: ${{ env.CIBW_BUILD }} - CIBW_ARCHS_LINUX: auto64 aarch64 + CIBW_ARCHS_LINUX: auto64 aarch64 ppc64le s390x CIBW_ARCHS_WINDOWS: auto64 ARM64 CIBW_ARCHS_MACOS: x86_64 arm64 universal2 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 5feec190..83e9314d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Add Linux ppc64le and s390x wheels by [@XuehaiPan](https://github.com/XuehaiPan) in [#25](https://github.com/metaopt/optree/pull/25). - Add accessor APIs `tree_flatten_with_accessor` and `PyTreeSpec.accessors` by [@XuehaiPan](https://github.com/XuehaiPan) in [#108](https://github.com/metaopt/optree/pull/108). - Add submodule `optree.functools` by [@XuehaiPan](https://github.com/XuehaiPan) in [#134](https://github.com/metaopt/optree/pull/134).