You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python/private/pypi/extension.bzl
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -492,11 +492,12 @@ preference.
492
492
Will always include `"any"` even if it is not specified.
493
493
494
494
The items in this list can contain a single `*` character that is equivalent to matching the
495
-
latest available version component in the platform_tag. Note, if the wheel platform tag does not
496
-
have a version component, e.g. `linux_x86_64` or `win_amd64`, then `*` will act as a regular
497
-
character.
495
+
lowest available version component in the platform_tag. Note, if the wheel platform tag does not
496
+
have a version component, e.g. `linux_x86_64` or `win_amd64`, then `*` will act as a lower bound
497
+
for the platform version, i.e. `musllinux_1_2_x86_64` means select a wheel that is built for
498
+
`muslc` 1.2 or greater, i.e. prefer `musllinux_1_2_x86_64` over `musllinux_1_3_x86_64` over `musllinux_1_4_x86_64` and so on, but exclude `musllinux_1_1_x86_64` and lower.
498
499
499
-
We will always select the highest available `platform_tag` version that is compatible with the
500
+
We will always select the lowest available `platform_tag` version that is compatible with the
0 commit comments