From 90b2e96ef0dc3fc35f8e64878d5b15da2056d9c0 Mon Sep 17 00:00:00 2001 From: Ram Rachum Date: Sat, 7 Mar 2026 13:21:41 +0200 Subject: [PATCH] Add support for Python 3.12-3.15 in setup.py classifiers --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index bbbb39e..225fd16 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,10 @@ setuptools.setup( 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', + 'Programming Language :: Python :: 3.15', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'License :: OSI Approved :: MIT License',