Skip to content

Commit 6741ff8

Browse files
committed
Make skipped wheel builds match upstream lxml.
1 parent b864c31 commit 6741ff8

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

pyproject.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,16 @@ requires = ['setuptools>=42', 'wheel', 'setuptools_scm[toml]>=3.4', "pkgconfig>=
4949
[tool.cibuildwheel]
5050
build-verbosity = 1
5151
build-frontend = "build"
52-
skip = ["pp*", "*-musllinux_i686"]
52+
skip = [
53+
"pp*",
54+
"*-musllinux_i686",
55+
# LXML doesn't publish wheels for these platforms, which makes it
56+
# difficult for us to build wheels, so we exclude them.
57+
"cp36-manylinux_aarch64",
58+
"cp37-manylinux_aarch64",
59+
"cp36-musllinux_aarch64",
60+
"cp37-musllinux_aarch64",
61+
]
5362
test-command = "pytest -v --color=yes {package}/tests"
5463
before-test = "pip install -r requirements-test.txt"
5564
test-skip = "*-macosx_arm64"

0 commit comments

Comments
 (0)