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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user