Merge pull request #1902 from clinton-hall/python-3.11

Add Python 3.11 end-of-life date
This commit is contained in:
Labrys of Knossos 2022-11-27 18:35:59 -05:00 committed by GitHub
commit 5dafa4ff42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

1
eol.py
View file

@ -28,6 +28,7 @@ def date(string, fmt='%Y-%m-%d'):
# https://devguide.python.org/ # https://devguide.python.org/
# https://devguide.python.org/devcycle/#devcycle # https://devguide.python.org/devcycle/#devcycle
PYTHON_EOL = { PYTHON_EOL = {
(3, 11): date('2027-10-1'),
(3, 10): date('2026-10-01'), (3, 10): date('2026-10-01'),
(3, 9): date('2025-10-05'), (3, 9): date('2025-10-05'),
(3, 8): date('2024-10-14'), (3, 8): date('2024-10-14'),