From 9ace7ab85c7b8d776a8545de5db4e4dcaffac8cf Mon Sep 17 00:00:00 2001 From: Nathan Dunfield Date: Sat, 14 Sep 2024 14:36:18 -0500 Subject: [PATCH] Try adding in Python 3.8 to the CI, not quite EOL, and skip musl --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b920af3..7deacb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,8 @@ requires = ["setuptools", "wheel", "cython"] [tool.cibuildwheel] -build = "cp39* cp310* cp311* cp312* cp313*" +build = "cp38* cp39* cp310* cp311* cp312* cp313*" +skip = "*musllinux*" archs = "auto64" test-command = "python -m cypari.test"