From 487c9049d869ad59998c908adbe67ce8b8ee00e6 Mon Sep 17 00:00:00 2001 From: Chris Burr Date: Thu, 13 Jan 2022 13:53:12 +0100 Subject: [PATCH 1/2] Build wheels for ppc64le --- .github/workflows/wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index f7338032bc..f66242ab98 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -72,7 +72,7 @@ jobs: strategy: matrix: python: [36, 37, 38, 39, 310] - arch: [aarch64] + arch: [aarch64, ppc64le] steps: - uses: actions/checkout@v2 From 19064569dcb5b7b5ba962c33c4707c9b5fbbe151 Mon Sep 17 00:00:00 2001 From: Chris Burr Date: Thu, 13 Jan 2022 14:19:39 +0100 Subject: [PATCH 2/2] Exclude Python 3.6 and 3.7 when building ppc64le wheels --- .github/workflows/wheels.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index f66242ab98..9e825c260f 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -73,6 +73,12 @@ jobs: matrix: python: [36, 37, 38, 39, 310] arch: [aarch64, ppc64le] + exclude: + - arch: ppc64le + python: 36 + - arch: ppc64le + python: 37 + steps: - uses: actions/checkout@v2