From 95c23e3c1a383a56a5be12307907360c102877b5 Mon Sep 17 00:00:00 2001 From: Fabien LOISON Date: Wed, 30 Oct 2024 11:14:17 +0100 Subject: [PATCH] misc: Removed PyPy wheels for Windows AMD64 as they won't build --- .github/workflows/python-packages.yml | 3 +++ README.rst | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/python-packages.yml b/.github/workflows/python-packages.yml index 8c75d9b..a47de1d 100644 --- a/.github/workflows/python-packages.yml +++ b/.github/workflows/python-packages.yml @@ -46,10 +46,12 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: include: - os: windows-2019 cibw_archs: AMD64 + cibw_skip: pp*-win_amd64 - os: windows-2019 cibw_archs: ARM64 - os: windows-2019 @@ -84,6 +86,7 @@ jobs: uses: pypa/cibuildwheel@v2.21.3 env: CIBW_ARCHS: ${{ matrix.cibw_archs }} + CIBW_SKIP: ${{ matrix.cibw_skip }} PIP_USE_PEP517: 1 - name: "Upload artifacts" diff --git a/README.rst b/README.rst index f39321d..cd9ab15 100644 --- a/README.rst +++ b/README.rst @@ -144,6 +144,7 @@ Changelog * **v1.1.2:** + * misc: Removed PyPy wheels for Windows AMD64 as they won't build (@flozz) * misc: Fixed libimagequant build on newer GCC versions (@flozz) * misc: Added Python 3.13 support (@flozz) * misc!: Removed Python 3.8 support (@flozz)