diff --git a/docs/options.md b/docs/options.md index f2a5c142..5f8e7b73 100644 --- a/docs/options.md +++ b/docs/options.md @@ -893,9 +893,11 @@ Platform-specific environment variables are also available:
CIBW_REPAIR_WHEEL_COMMAND_LINUX: "auditwheel repair --lib-sdir . -w {dest_dir} {wheel}" # Multi-line example - use && to join on all platforms + # Use abi3audit to catch issues with Limited API wheels CIBW_REPAIR_WHEEL_COMMAND: > python scripts/repair_wheel.py -w {dest_dir} {wheel} && - python scripts/check_repaired_wheel.py -w {dest_dir} {wheel} + python scripts/check_repaired_wheel.py -w {dest_dir} {wheel} && + pipx run abi3audit --strict --report {wheel} ``` !!! tab examples "pyproject.toml" @@ -915,10 +917,12 @@ Platform-specific environment variables are also available:
repair-wheel-command = "auditwheel repair --lib-sdir . -w {dest_dir} {wheel}" # Multi-line example + # Use abi3audit to catch issues with Limited API wheels [tool.cibuildwheel] repair-wheel-command = [ 'python scripts/repair_wheel.py -w {dest_dir} {wheel}', 'python scripts/check_repaired_wheel.py -w {dest_dir} {wheel}', + 'pipx run abi3audit --strict --report {wheel}', ] ```