Skip to content

Commit

Permalink
Build: Reduce the number of build jobs by disabling some old targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Apr 2, 2024
1 parent 06ad31c commit 175c66a
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,21 @@ requires = ["Cython>=3.0.10", "setuptools", "wheel"]
[tool.cibuildwheel]
build-verbosity = 2
environment = {STATIC_DEPS="true", LIBXML2_VERSION = "2.12.6", LIBXSLT_VERSION = "1.1.39"}
skip = ["pp*-manylinux_i686", "*-musllinux_i686", "cp38_macosx_universal2"]
skip = [
"pp*-manylinux_i686",
"*-musllinux_i686",
# Py3.8 wheel for macos is not universal: https://bugs.launchpad.net/lxml/+bug/2055404
"cp38_macosx_universal2",
# Reduce job load and HTTP hit rate on library servers.
"cp36-manylinux_aarch64",
"cp37-manylinux_aarch64",
"cp36-manylinux_ppc64le",
"cp37-manylinux_ppc64le",
"cp38-manylinux_ppc64le",
"cp36-manylinux_s390x",
"cp37-manylinux_s390x",
"cp38-manylinux_s390x",
]
# test-command = "python {package}/test.py -p -v"

[tool.cibuildwheel.linux]
Expand Down

0 comments on commit 175c66a

Please sign in to comment.