We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f54421b commit 737e873Copy full SHA for 737e873
1 file changed
.github/workflows/build-and-release.yaml
@@ -44,8 +44,11 @@ jobs:
44
- name: Build wheels
45
uses: pypa/cibuildwheel@v2.22.0
46
env:
47
- # disable repair
+ # Keep repair disabled by default for non-Linux platforms in this job.
48
CIBW_REPAIR_WHEEL_COMMAND: ""
49
+ # Linux needs auditwheel repair so manylinux and musllinux wheels are
50
+ # published with distinct platform tags instead of generic linux tags.
51
+ CIBW_REPAIR_WHEEL_COMMAND_LINUX: "auditwheel repair -w {dest_dir} {wheel}"
52
# Skip cibuildwheel's default i686 sidecar and keep Linux release
53
# wheels on a portable x86_64 CPU baseline.
54
CIBW_ARCHS_LINUX: "auto64"
0 commit comments