From 78bfa0fd26e1a5b98b271a4cee10783cf82d941a Mon Sep 17 00:00:00 2001 From: ZipFile Date: Mon, 19 May 2025 13:35:23 +0000 Subject: [PATCH] Enable ABI3 builds --- .github/workflows/publishing.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publishing.yml b/.github/workflows/publishing.yml index f3bf1529..27bed3b7 100644 --- a/.github/workflows/publishing.yml +++ b/.github/workflows/publishing.yml @@ -62,11 +62,14 @@ jobs: matrix: os: [ubuntu-24.04, ubuntu-24.04-arm, windows-2019, macos-14] env: - CIBW_SKIP: cp27-* + CIBW_ENABLE: pypy + CIBW_ENVIRONMENT: >- + PIP_CONFIG_SETTINGS="build_ext=-j4" + DEPENDENCY_INJECTOR_LIMITED_API="1" steps: - uses: actions/checkout@v3 - name: Build wheels - uses: pypa/cibuildwheel@v2.20.0 + uses: pypa/cibuildwheel@v2.23.3 - uses: actions/upload-artifact@v4 with: name: cibw-wheels-x86-${{ matrix.os }}-${{ strategy.job-index }}