diff options
author | David Robertson <davidr@element.io> | 2023-02-07 20:48:34 +0000 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2023-02-07 20:48:34 +0000 |
commit | a39c9adce6cce9535620e61589fac422ab549c20 (patch) | |
tree | 80e98047e1bdb349bb4c446370c9dc4aa7f62873 | |
parent | Revert "Revert "Allow poetry-core 1.5.0 (#14949)"" (diff) | |
download | synapse-dmr/fix-mac-wheels.tar.xz |
Will this work?!?!?!?! github/dmr/fix-mac-wheels dmr/fix-mac-wheels
-rwxr-xr-x | .ci/scripts/auditwheel_wrapper.py | 4 |
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( |