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:
Charlie Marsh 2025-01-15 18:27:17 -05:00 committed by GitHub
parent 1c17662b37
commit ee6ba41d46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 61 additions and 31 deletions

View file

@ -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 {