File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ pip = use_extension("//python/extensions:pip.bzl", "pip")
7575 os_name = "linux" ,
7676 platform = "linux_{}" .format (cpu ),
7777 whl_abi_tags = [
78- "none" ,
7978 "abi3" ,
8079 "cp{major}{minor}" ,
8180 ],
@@ -103,7 +102,6 @@ pip = use_extension("//python/extensions:pip.bzl", "pip")
103102 os_name = "osx" ,
104103 platform = "osx_{}" .format (cpu ),
105104 whl_abi_tags = [
106- "none" ,
107105 "abi3" ,
108106 "cp{major}{minor}" ,
109107 ],
@@ -135,7 +133,6 @@ pip = use_extension("//python/extensions:pip.bzl", "pip")
135133 os_name = "windows" ,
136134 platform = "windows_{}" .format (cpu ),
137135 whl_abi_tags = [
138- "none" ,
139136 "abi3" ,
140137 "cp{major}{minor}" ,
141138 ],
Original file line number Diff line number Diff line change @@ -888,6 +888,7 @@ If you are defining custom platforms in your project and don't want things to cl
888888 A list of ABIs to select wheels for. The values can be either strings or include template
889889parameters like `{major}` and `{minor}` which will be replaced with python version parts. e.g.
890890`cp{major}{minor}` will result in `cp313` given the full python version is `3.13.5`.
891+ Will always include `"none"` even if it is not specified.
891892
892893:::{note}
893894We select a single wheel and the last match will take precedence.
@@ -902,6 +903,7 @@ See official [docs](https://packaging.python.org/en/latest/specifications/platfo
902903 doc = """\
903904 A list of `platform_tag` matchers so that we can select the best wheel based on the user
904905preference.
906+ Will always include `"any"` even if it is not specified.
905907
906908The items in this list can contain a single `*` character that is equivalent to `.*` regex match.
907909
You can’t perform that action at this time.
0 commit comments