* feat: add musllinux support (PEP 656) Add musllinux support (PEP 656) allowing to build wheels for musl libc based distros (e.g. Alpine) * feat: add musllinux support (PEP 656) doc * doc: combine `CIBW_MANYLINUX_*_IMAGE` & `CIBW_MUSLLINUX_*_IMAGE` options * fix: doc to be squashed * doc: combine manylinux /musllinux in README * Update docs/options.md Co-authored-by: Joe Rickerby <joerick@mac.com> Co-authored-by: Joe Rickerby <joerick@mac.com>
47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[tool.cibuildwheel]
|
|
build = "*"
|
|
skip = ""
|
|
test-skip = ""
|
|
|
|
archs = ["auto"]
|
|
build-frontend = "pip"
|
|
dependency-versions = "pinned"
|
|
environment = {}
|
|
build-verbosity = ""
|
|
|
|
before-all = ""
|
|
before-build = ""
|
|
repair-wheel-command = ""
|
|
|
|
test-command = ""
|
|
before-test = ""
|
|
test-requires = []
|
|
test-extras = []
|
|
|
|
manylinux-x86_64-image = "manylinux2010"
|
|
manylinux-i686-image = "manylinux2010"
|
|
manylinux-aarch64-image = "manylinux2014"
|
|
manylinux-ppc64le-image = "manylinux2014"
|
|
manylinux-s390x-image = "manylinux2014"
|
|
manylinux-pypy_x86_64-image = "manylinux2010"
|
|
manylinux-pypy_i686-image = "manylinux2010"
|
|
manylinux-pypy_aarch64-image = "manylinux2014"
|
|
|
|
musllinux-x86_64-image = "musllinux_1_1"
|
|
musllinux-i686-image = "musllinux_1_1"
|
|
musllinux-aarch64-image = "musllinux_1_1"
|
|
musllinux-ppc64le-image = "musllinux_1_1"
|
|
musllinux-s390x-image = "musllinux_1_1"
|
|
|
|
|
|
[tool.cibuildwheel.linux]
|
|
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
|
|
|
|
[tool.cibuildwheel.macos]
|
|
repair-wheel-command = [
|
|
"delocate-listdeps {wheel}",
|
|
"delocate-wheel --require-archs {delocate_archs} -w {dest_dir} {wheel}",
|
|
]
|
|
|
|
[tool.cibuildwheel.windows]
|