summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2023-02-07 20:48:34 +0000
committerDavid Robertson <davidr@element.io>2023-02-07 20:48:34 +0000
commita39c9adce6cce9535620e61589fac422ab549c20 (patch)
tree80e98047e1bdb349bb4c446370c9dc4aa7f62873
parentRevert "Revert "Allow poetry-core 1.5.0 (#14949)"" (diff)
downloadsynapse-github/dmr/fix-mac-wheels.tar.xz
-rwxr-xr-x.ci/scripts/auditwheel_wrapper.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/.ci/scripts/auditwheel_wrapper.py b/.ci/scripts/auditwheel_wrapper.py

index 65edc65c3b..fcf111e267 100755 --- a/.ci/scripts/auditwheel_wrapper.py +++ b/.ci/scripts/auditwheel_wrapper.py
@@ -50,7 +50,9 @@ def cpython(wheel_file: str, name: str, version: Version, tag: Tag) -> str: check_is_abi3_compatible(wheel_file) - abi3_tag = Tag(tag.interpreter, "abi3", tag.platform) + # DMR: surely this won't make it work? + platform = tag.platform.replace("macosx_11_0", "macosx_10_16") + abi3_tag = Tag(tag.interpreter, "abi3", platform) dirname = os.path.dirname(wheel_file) new_wheel_file = os.path.join(