From dac21755d205a58f8c601601e3e756273e5b31ec Mon Sep 17 00:00:00 2001 From: Chris Amico Date: Sat, 11 Nov 2023 13:25:11 -0500 Subject: [PATCH] Python 3.12 support --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b861c1f..fa18562 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ readme = f.read() -VERSION = "1.0.0" +VERSION = "1.0.1" setup( @@ -41,6 +41,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], test_suite="test", )