Correct Pyston tag format (#10580)

## Summary

Empirically, it looks like the format here is slightly different than
what we had in the code? Our integration test caught it.
This commit is contained in:
Charlie Marsh
2025-01-13 21:31:11 -05:00
committed by GitHub
parent 5c91217488
commit 3fd090b373
4 changed files with 68 additions and 80 deletions
@@ -469,9 +469,6 @@ impl RequiresPython {
} | AbiTag::GraalPy {
python_version: (2, ..),
..
} | AbiTag::Pyston {
python_version: (2, ..),
..
}
) {
// Python 2 is never allowed.
@@ -487,10 +484,6 @@ impl RequiresPython {
| AbiTag::GraalPy {
python_version: (3, minor),
..
}
| AbiTag::Pyston {
python_version: (3, minor),
..
} = abi_tag
{
// Ex) If the wheel bound is `3.6`, then it doesn't match `>=3.10`.