From 10035d732b076b099de4a071edc3c845a37540c2 Mon Sep 17 00:00:00 2001 From: Leo Singer Date: Mon, 15 Jul 2024 13:15:04 -0400 Subject: [PATCH] Don't build wheels for PyPy PyPy is probably not long for this world; see https://github.com/mesonbuild/meson-python/pull/626#issuecomment-2111018667. Fixes #216. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 04e761c..e13e0cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ requires = ["setuptools>=42.0.0", build-backend = 'setuptools.build_meta' [tool.cibuildwheel] -skip = "*-musllinux_* pp310*" +skip = "*-musllinux_* pp*" [tool.cibuildwheel.macos] archs = ["x86_64", "universal2"]