From bb43218e0d849d70ff7ab46fcb4b43c33509f93c Mon Sep 17 00:00:00 2001 From: David Wright Date: Mon, 19 Feb 2024 12:14:38 -0800 Subject: [PATCH] Skip 32-bit builds --- .github/workflows/publish_to_pypi.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_to_pypi.yaml b/.github/workflows/publish_to_pypi.yaml index e69ff968..71ae5132 100644 --- a/.github/workflows/publish_to_pypi.yaml +++ b/.github/workflows/publish_to_pypi.yaml @@ -21,8 +21,8 @@ jobs: - name: Build wheels uses: pypa/cibuildwheel@v2.16.2 env: - # Skip CPython 3.6, 3.7, 3.8, 3.12 - CIBW_SKIP: cp36-* cp37-* cp38-* cp312-* pp* + # Skip CPython 3.6, 3.7, 3.8, 3.12, PyPy, and 32-bit + CIBW_SKIP: "cp36-* cp37-* cp38-* cp312-* pp* *-manylinux_i686" - uses: actions/upload-artifact@v3 with: