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.
This commit is contained in:
Damien Elmes 2021-10-08 16:27:22 +10:00
parent 6e48a59a8a
commit caa76c8b96
2 changed files with 2 additions and 2 deletions

View File

@ -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",
}),

View File

@ -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": [],
}),