From a6f68158424d27f88bcba0a661732b7290723437 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Fri, 22 Oct 2021 18:12:20 +0300 Subject: [PATCH] Declare support for Python 3.10 --- CHANGES.md | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index c8b9c849815..a9d87037b99 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -10,6 +10,7 @@ - Add partial support for the match statement. As it's experimental, it's only enabled when `--target-version py310` is explicitly specified (#2586) - Add support for parenthesized with (#2586) +- Declare support for Python 3.10 (#2562) ## 21.10b0 diff --git a/setup.py b/setup.py index a0c2006ef33..1914ba745e7 100644 --- a/setup.py +++ b/setup.py @@ -104,6 +104,7 @@ def get_long_description() -> str: "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3 :: Only", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Quality Assurance",