Add Python 3.13 to list of allowed Python versions (#11411)

## Summary

I believe we're already "Python 3.13-ready"? The main Ruff-impacting
change I see in https://docs.python.org/3.13/whatsnew/3.13.html is [PEP
696](https://peps.python.org/pep-0696/) which Jelle added in
https://github.com/astral-sh/ruff/pull/11120.
This commit is contained in:
Charlie Marsh 2024-05-13 12:35:41 -04:00 committed by GitHub
parent dc5c44ccc4
commit 6ed2482e27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 170 additions and 25 deletions

View file

@ -465,6 +465,7 @@ pub enum PythonVersion {
Py310,
Py311,
Py312,
Py313,
}
impl PythonVersion {