From 7dfefa30077f32a927b6bb45dc41f1d88af60a14 Mon Sep 17 00:00:00 2001 From: Andrew Cassidy Date: Sat, 9 Apr 2022 22:40:05 -0700 Subject: [PATCH] Skip musl linux wheel builds Pillow appears to fail to compile on these without installing a bunch of dependencies, so... sorry alpine users --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 6559e55..b67354a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,6 +56,7 @@ package-dir = { '' = '.' } # without this line, C++ source files get included in [tool.cibuildwheel] build = "cp{37,38,39,310}-*" +skip = ["*musl*"] test-command = "python -m unittest --verbose" test-extras = ["tests"] manylinux-x86_64-image = "manylinux2014"