add missing wheel/helper for darwin-arm64
This commit is contained in:
parent
036d04a7b1
commit
3f321f08f1
@ -72,8 +72,10 @@ py_wheel(
|
|||||||
platform = select({
|
platform = select({
|
||||||
"//platforms:windows_x86_64": "win_amd64",
|
"//platforms:windows_x86_64": "win_amd64",
|
||||||
"//platforms:macos_x86_64": "macosx_10_13_x86_64",
|
"//platforms:macos_x86_64": "macosx_10_13_x86_64",
|
||||||
|
"//platforms:macos_arm64": "macosx_11_0_arm64",
|
||||||
|
# the glibc versions below are set for the official builds;
|
||||||
|
# you can adjust them to suit your enviroment
|
||||||
"//platforms:linux_x86_64": "manylinux_2_28_x86_64",
|
"//platforms:linux_x86_64": "manylinux_2_28_x86_64",
|
||||||
# Built on a Debian 11 image that has Qt 5.15
|
|
||||||
"//platforms:linux_arm64": "manylinux_2_31_aarch64",
|
"//platforms:linux_arm64": "manylinux_2_31_aarch64",
|
||||||
}),
|
}),
|
||||||
python_tag = "cp39",
|
python_tag = "cp39",
|
||||||
|
@ -11,6 +11,7 @@ filegroup(
|
|||||||
name = "lib",
|
name = "lib",
|
||||||
srcs = [] + select({
|
srcs = [] + select({
|
||||||
"//platforms:macos_x86_64": ["libankihelper.dylib"],
|
"//platforms:macos_x86_64": ["libankihelper.dylib"],
|
||||||
|
"//platforms:macos_arm64": ["libankihelper.dylib"],
|
||||||
"//conditions:default": [],
|
"//conditions:default": [],
|
||||||
}),
|
}),
|
||||||
visibility = ["//qt:__subpackages__"],
|
visibility = ["//qt:__subpackages__"],
|
||||||
|
Loading…
Reference in New Issue
Block a user