mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-01 20:31:12 +00:00
Add support for pypy_73-style tags (#10660)
## Summary I'm inferring that these are like... the older tag format? See, e.g.: ``` soxbindings-0.0.1-pp27-pypy_73-macosx_10_9_x86_64.whl soxbindings-0.0.1-pp27-pypy_73-manylinux2010_x86_64.whl soxbindings-0.0.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl soxbindings-0.0.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl ```
This commit is contained in:
parent
1c17662b37
commit
ee6ba41d46
3 changed files with 61 additions and 31 deletions
|
|
@ -464,7 +464,7 @@ impl RequiresPython {
|
|||
python_version: (2, ..),
|
||||
..
|
||||
} | AbiTag::PyPy {
|
||||
python_version: (2, ..),
|
||||
python_version: None | Some((2, ..)),
|
||||
..
|
||||
} | AbiTag::GraalPy {
|
||||
python_version: (2, ..),
|
||||
|
|
@ -478,7 +478,7 @@ impl RequiresPython {
|
|||
..
|
||||
}
|
||||
| AbiTag::PyPy {
|
||||
python_version: (3, minor),
|
||||
python_version: Some((3, minor)),
|
||||
..
|
||||
}
|
||||
| AbiTag::GraalPy {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue