From 994e1cae86c002895e8a62efe60e14d30abd3a09 Mon Sep 17 00:00:00 2001 From: Bruce Merry Date: Mon, 12 Dec 2022 21:10:11 +0200 Subject: [PATCH] Only build manylinux, not musllinux Will need more work to figure out how to install libffi-devel on musllinux --- pyproject.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7a41e16..33154d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,17 @@ requires = ["setuptools", "wheel", "cffi", "setuptools_scm"] [tool.cibuildwheel] -build = ["cp36-*", "cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*", "pp37-*", "pp38-*", "pp39-*"] +build = [ + "cp36-manylinux_*", + "cp37-manylinux_*", + "cp38-manylinux_*", + "cp39-manylinux_*", + "cp310-manylinux_*", + "cp311-manylinux_*", + "pp37-manylinux_*", + "pp38-manylinux_*", + "pp39-manylinux_*" +] build-frontend = "build" [tool.cibuildwheel.linux]