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")
75
75
os_name = "linux" ,
76
76
platform = "linux_{}" .format (cpu ),
77
77
whl_abi_tags = [
78
- "none" ,
79
78
"abi3" ,
80
79
"cp{major}{minor}" ,
81
80
],
@@ -103,7 +102,6 @@ pip = use_extension("//python/extensions:pip.bzl", "pip")
103
102
os_name = "osx" ,
104
103
platform = "osx_{}" .format (cpu ),
105
104
whl_abi_tags = [
106
- "none" ,
107
105
"abi3" ,
108
106
"cp{major}{minor}" ,
109
107
],
@@ -135,7 +133,6 @@ pip = use_extension("//python/extensions:pip.bzl", "pip")
135
133
os_name = "windows" ,
136
134
platform = "windows_{}" .format (cpu ),
137
135
whl_abi_tags = [
138
- "none" ,
139
136
"abi3" ,
140
137
"cp{major}{minor}" ,
141
138
],
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
888
888
A list of ABIs to select wheels for. The values can be either strings or include template
889
889
parameters like `{major}` and `{minor}` which will be replaced with python version parts. e.g.
890
890
`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.
891
892
892
893
:::{note}
893
894
We 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
902
903
doc = """\
903
904
A list of `platform_tag` matchers so that we can select the best wheel based on the user
904
905
preference.
906
+ Will always include `"any"` even if it is not specified.
905
907
906
908
The items in this list can contain a single `*` character that is equivalent to `.*` regex match.
907
909
You can’t perform that action at this time.
0 commit comments