From caa76c8b966521c6b439bcfdbdf6082fd37667d0 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 8 Oct 2021 16:27:22 +1000 Subject: [PATCH] update macOS wheel minimum to 10.13 The coarsetime crate already had us limited to 10.12+, and the wheel had just not been updated to reflect that. Increased to 10.13, as that's the minimum the Qt 5.14 libraries support. --- pylib/anki/BUILD.bazel | 2 +- pylib/rsbridge/BUILD.bazel | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pylib/anki/BUILD.bazel b/pylib/anki/BUILD.bazel index afe4509b7..abb7fe324 100644 --- a/pylib/anki/BUILD.bazel +++ b/pylib/anki/BUILD.bazel @@ -72,7 +72,7 @@ py_wheel( }, platform = select({ "//platforms:windows_x86_64": "win_amd64", - "//platforms:macos_x86_64": "macosx_10_7_x86_64", + "//platforms:macos_x86_64": "macosx_10_13_x86_64", "//platforms:linux_x86_64": "manylinux_2_28_x86_64", "//platforms:linux_arm64": "manylinux_2_28_aarch64", }), diff --git a/pylib/rsbridge/BUILD.bazel b/pylib/rsbridge/BUILD.bazel index fb81244e7..66502a1c5 100644 --- a/pylib/rsbridge/BUILD.bazel +++ b/pylib/rsbridge/BUILD.bazel @@ -18,7 +18,7 @@ rust_library( ): [ "-Clink-arg=-undefined", "-Clink-arg=dynamic_lookup", - "-Clink-arg=-mmacosx-version-min=10.7", + "-Clink-arg=-mmacosx-version-min=10.13", ], "//conditions:default": [], }),