From 9740ae6024678ccc20215f975ffd91e6e4e77257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marvin=20Gie=C3=9Fing?= Date: Thu, 13 Feb 2025 15:03:42 +0100 Subject: [PATCH] Enable ppc64le wheel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marvin Gießing --- .github/workflows/wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9809bd9c..b94cfc87 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -110,7 +110,7 @@ jobs: CIBW_ARCHS: x86_64 CIBW_ARCHS_MACOS: x86_64 CIBW_PLATFORM: macos - CIBW_SKIP: "pp* *-musllinux_* *_i686* *_s390* *arm64* *pypy*" + CIBW_SKIP: "pp* *-musllinux_* *_i686* *_s390* *arm64* *ppc64le* *pypy*" CIBW_PROJECT_REQUIRES_PYTHON: "~=${{ matrix.python-version }}.0" CIBW_BUILD_VERBOSITY: 3 CMAKE_OSX_ARCHITECTURES: x86_64 @@ -211,7 +211,7 @@ jobs: if: startsWith(matrix.os.name, 'ubuntu') env: # CIBW_BUILD: ${{ env.python_cp_version }}-${{ matrix.os.platform_id }} - CIBW_ARCHS: auto x86_64 aarch64 + CIBW_ARCHS: auto x86_64 aarch64 ppc64le CIBW_PLATFORM: linux CIBW_SKIP: "pp* *musllinux_* *_i686* *_s390* *pypy*" CIBW_PROJECT_REQUIRES_PYTHON: "~=${{ matrix.python-version }}.0"