From 8f7230625cf45d401baf48e700295e86eecee63b Mon Sep 17 00:00:00 2001 From: knucklessg1 Date: Fri, 27 Oct 2023 22:18:39 -0500 Subject: [PATCH] Support Python 3.12 --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 2e90975..7ad973f 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,9 @@ 'Operating System :: POSIX :: Linux', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], entry_points={'console_scripts': ['repository-manager = repository_manager.repository_manager:main']}, )