From b22b854b464318a7ac429389032ae0888f913749 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Thu, 22 Jun 2023 10:15:35 -0400 Subject: [PATCH] Declare Python 3.12 support --- ChangeLog | 4 ++++ pyproject.toml | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index af0c97ace6..b81d0b0f78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,10 @@ What's New in astroid 3.0.0? ============================= Release date: TBA +* Add support for Python 3.12, including PEP 695 type parameter syntax. + + Closes #2201 + * Remove support for Python 3.7. Refs #2137 diff --git a/pyproject.toml b/pyproject.toml index 9b3d42723c..014adf28fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules",