Compare commits

...

2 Commits

Author SHA1 Message Date
dac7f07db4 Build for musl linux for platforms supported by Pillow
Specifically x64 for cpython 3.8-3.10
2022-04-09 22:54:06 -07:00
7dfefa3007 Skip musl linux wheel builds
Pillow appears to fail to compile on these without installing a bunch of dependencies, so... sorry alpine users
2022-04-09 22:40:05 -07:00

View File

@ -56,6 +56,7 @@ package-dir = { '' = '.' } # without this line, C++ source files get included in
[tool.cibuildwheel]
build = "cp{37,38,39,310}-*"
skip = ["*cp37-musllinux*", "*musllinux_aarch64*"]
test-command = "python -m unittest --verbose"
test-extras = ["tests"]
manylinux-x86_64-image = "manylinux2014"