From 610d8eff35c86fee872361b7af969c398d6d84d5 Mon Sep 17 00:00:00 2001 From: Kyle Gottfried <6462596+Spitfire1900@users.noreply.github.com> Date: Sat, 4 Jan 2025 19:01:12 -0500 Subject: [PATCH 1/2] per https://cibuildwheel.pypa.io/en/stable/options/#enable pypy will have to be manually enabled in cibuildwheel 3 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 20a14e65..44619b81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,6 +2,7 @@ requires = ["setuptools", "wheel"] [tool.cibuildwheel] +enable = ["pypy"] skip = "*musllinux_aarch64 *musllinux_ppc64le" archs = ["auto"] From 2f3a1fb0286c4ce400515693cb78648e0bd126bc Mon Sep 17 00:00:00 2001 From: Kyle Gottfried <6462596+Spitfire1900@users.noreply.github.com> Date: Sun, 5 Jan 2025 10:20:13 -0500 Subject: [PATCH 2/2] cibuildwheel==2.22.0 --- .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 f993a5d2..1ef19c98 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -32,7 +32,7 @@ jobs: platforms: all - name: Install cibuildwheel - run: python -m pip install cibuildwheel==2.21.3 + run: python -m pip install cibuildwheel==2.22.0 - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse