* feat: support passenv * refactor: environment-pass and spaces * docs: document environment pass * Add unit test for passing through awkward env variable values * Remove unused as_shell_commands method from environment * Fix passthrough edge case by avoiding bash for passthrough assignments * Fix mypy error in test * Fix unit test * Apply suggestions from code review Co-authored-by: Joe Rickerby <joerick@mac.com>
48 lines
1.1 KiB
TOML
48 lines
1.1 KiB
TOML
[tool.cibuildwheel]
|
|
build = "*"
|
|
skip = ""
|
|
test-skip = ""
|
|
|
|
archs = ["auto"]
|
|
build-frontend = "pip"
|
|
dependency-versions = "pinned"
|
|
environment = {}
|
|
environment-pass = []
|
|
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]
|