mirror of
https://github.com/astral-sh/uv.git
synced 2025-10-28 18:54:10 +00:00
Correct documentation for wheel tag hints (#10735)
These were copy-pasted by accident.
This commit is contained in:
parent
ddff891397
commit
1bfa7230fc
1 changed files with 6 additions and 3 deletions
|
|
@ -1104,7 +1104,8 @@ pub(crate) enum PubGrubHint {
|
||||||
UnauthorizedIndex { index: IndexUrl },
|
UnauthorizedIndex { index: IndexUrl },
|
||||||
/// An index returned a Forbidden (403) response.
|
/// An index returned a Forbidden (403) response.
|
||||||
ForbiddenIndex { index: IndexUrl },
|
ForbiddenIndex { index: IndexUrl },
|
||||||
/// No wheels are available for a package, and using source distributions was disabled.
|
/// None of the available wheels for a package have a compatible Python language tag (e.g.,
|
||||||
|
/// `cp310` in `cp310-abi3-manylinux_2_17_x86_64.whl`).
|
||||||
LanguageTags {
|
LanguageTags {
|
||||||
package: PackageName,
|
package: PackageName,
|
||||||
// excluded from `PartialEq` and `Hash`
|
// excluded from `PartialEq` and `Hash`
|
||||||
|
|
@ -1114,7 +1115,8 @@ pub(crate) enum PubGrubHint {
|
||||||
// excluded from `PartialEq` and `Hash`
|
// excluded from `PartialEq` and `Hash`
|
||||||
best: Option<LanguageTag>,
|
best: Option<LanguageTag>,
|
||||||
},
|
},
|
||||||
/// No wheels are available for a package, and using source distributions was disabled.
|
/// None of the available wheels for a package have a compatible ABI tag (e.g., `abi3` in
|
||||||
|
/// `cp310-abi3-manylinux_2_17_x86_64.whl`).
|
||||||
AbiTags {
|
AbiTags {
|
||||||
package: PackageName,
|
package: PackageName,
|
||||||
// excluded from `PartialEq` and `Hash`
|
// excluded from `PartialEq` and `Hash`
|
||||||
|
|
@ -1124,7 +1126,8 @@ pub(crate) enum PubGrubHint {
|
||||||
// excluded from `PartialEq` and `Hash`
|
// excluded from `PartialEq` and `Hash`
|
||||||
best: Option<AbiTag>,
|
best: Option<AbiTag>,
|
||||||
},
|
},
|
||||||
/// No wheels are available for a package, and using source distributions was disabled.
|
/// None of the available wheels for a package have a compatible platform tag (e.g.,
|
||||||
|
/// `manylinux_2_17_x86_64` in `cp310-abi3-manylinux_2_17_x86_64.whl`).
|
||||||
PlatformTags {
|
PlatformTags {
|
||||||
package: PackageName,
|
package: PackageName,
|
||||||
// excluded from `PartialEq` and `Hash`
|
// excluded from `PartialEq` and `Hash`
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue