From 2c87a9ea288fff2de47e1dd7bdcef8c9d4fa7a55 Mon Sep 17 00:00:00 2001 From: felix-hilden Date: Tue, 5 Oct 2021 20:32:13 +0300 Subject: [PATCH] Support and test Python 3.10 (#33) --- docs/src/release_notes.rst | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/src/release_notes.rst b/docs/src/release_notes.rst index 46f8c4c..c11d52a 100644 --- a/docs/src/release_notes.rst +++ b/docs/src/release_notes.rst @@ -15,6 +15,7 @@ Unreleased 0.7.0 (2021-11-28) ------------------ - Declare CSS class as public API (:issue:`3`) +- Support Python 3.10 (:issue:`33`) - Add ability to link to subclass documentation (:issue:`68`) - Append a newline to error messages with source code (:issue:`70`) - Fix unpacking starred assignment (:issue:`71`) diff --git a/setup.py b/setup.py index fa491f2..730da18 100644 --- a/setup.py +++ b/setup.py @@ -74,6 +74,7 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Documentation', 'Topic :: Documentation :: Sphinx', 'Topic :: Software Development :: Documentation',