* Add the ability to declare safe tools in a cross-build environment. * Add an xfail if cmake isn't available on the test machine. * Placate linter regarding positional args. * Rework test to provide more robust confirmation of safe tools. * Remove a test skip condition that is no longer needed. Co-authored-by: Joe Rickerby <joerick@mac.com> * Rename the setting to xbuild-tools. * Add docs to clarify that xbuild-tools is transitive. * Raise a warning if xbuild-tools isn't defined. * Correct a bad copy-paste in the schema generator. * .. and now fix the indentation. * Move sentinel handling earlier into the parsing process. * Remove serialization from tests that won't start a test suite. --------- Co-authored-by: Joe Rickerby <joerick@mac.com>
59 lines
1.4 KiB
TOML
59 lines
1.4 KiB
TOML
[tool.cibuildwheel]
|
|
build = "*"
|
|
skip = ""
|
|
test-skip = ""
|
|
enable = []
|
|
|
|
archs = ["auto"]
|
|
build-frontend = "default"
|
|
config-settings = {}
|
|
dependency-versions = "pinned"
|
|
environment = {}
|
|
environment-pass = []
|
|
build-verbosity = 0
|
|
|
|
before-all = ""
|
|
before-build = ""
|
|
# TOML doesn't support explicit NULLs; use ["\u0000"] as a sentinel value.
|
|
xbuild-tools = ["\u0000"]
|
|
repair-wheel-command = ""
|
|
|
|
test-command = ""
|
|
before-test = ""
|
|
test-sources = []
|
|
test-requires = []
|
|
test-extras = []
|
|
test-groups = []
|
|
|
|
container-engine = "docker"
|
|
|
|
manylinux-x86_64-image = "manylinux_2_28"
|
|
manylinux-i686-image = "manylinux2014"
|
|
manylinux-aarch64-image = "manylinux_2_28"
|
|
manylinux-ppc64le-image = "manylinux_2_28"
|
|
manylinux-s390x-image = "manylinux_2_28"
|
|
manylinux-armv7l-image = "manylinux_2_31"
|
|
manylinux-pypy_x86_64-image = "manylinux_2_28"
|
|
manylinux-pypy_i686-image = "manylinux2014"
|
|
manylinux-pypy_aarch64-image = "manylinux_2_28"
|
|
|
|
musllinux-x86_64-image = "musllinux_1_2"
|
|
musllinux-i686-image = "musllinux_1_2"
|
|
musllinux-aarch64-image = "musllinux_1_2"
|
|
musllinux-ppc64le-image = "musllinux_1_2"
|
|
musllinux-s390x-image = "musllinux_1_2"
|
|
musllinux-armv7l-image = "musllinux_1_2"
|
|
|
|
|
|
[tool.cibuildwheel.linux]
|
|
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
|
|
|
|
[tool.cibuildwheel.macos]
|
|
repair-wheel-command = "delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}"
|
|
|
|
[tool.cibuildwheel.windows]
|
|
|
|
[tool.cibuildwheel.ios]
|
|
|
|
[tool.cibuildwheel.pyodide]
|