Skip to content

Commit

Permalink
Make skipped wheel builds match upstream lxml.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathangreen committed Apr 9, 2024
1 parent b864c31 commit 6741ff8
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,16 @@ requires = ['setuptools>=42', 'wheel', 'setuptools_scm[toml]>=3.4', "pkgconfig>=
[tool.cibuildwheel]
build-verbosity = 1
build-frontend = "build"
skip = ["pp*", "*-musllinux_i686"]
skip = [
"pp*",
"*-musllinux_i686",
# LXML doesn't publish wheels for these platforms, which makes it
# difficult for us to build wheels, so we exclude them.
"cp36-manylinux_aarch64",
"cp37-manylinux_aarch64",
"cp36-musllinux_aarch64",
"cp37-musllinux_aarch64",
]
test-command = "pytest -v --color=yes {package}/tests"
before-test = "pip install -r requirements-test.txt"
test-skip = "*-macosx_arm64"
Expand Down

0 comments on commit 6741ff8

Please sign in to comment.