From 78e081889698e2b550e9fe15f01bcdc5083d5bef Mon Sep 17 00:00:00 2001 From: Erik Olof Gunnar Andersson Date: Sun, 13 Oct 2024 15:00:50 +0200 Subject: [PATCH] Add Python 3.13 support --- CHANGELOG.rst | 1 + README.rst | 1 + setup.py | 1 + 3 files changed, 3 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7412982..b99b06b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,7 @@ Changelog Version 2.11.0 -------------- +- Added Python 3.13 support. - Replaced select.select with select.poll on Linux by default. - Replaced list with collections.deque - Thanks Bernhard Thiel. - Removed unnecessary lock when building messages. diff --git a/README.rst b/README.rst index 996a3b8..11a9e15 100644 --- a/README.rst +++ b/README.rst @@ -17,6 +17,7 @@ Changelog Version 2.11.0 -------------- +- Added Python 3.13 support. - Replaced select.select with select.poll on Linux by default. - Replaced list with collections.deque - Thanks Bernhard Thiel. - Removed unnecessary lock when building messages. diff --git a/setup.py b/setup.py index 2657cc4..4f87b1a 100644 --- a/setup.py +++ b/setup.py @@ -54,6 +54,7 @@ def get_version(rel_path): 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Communications',