From 8449d6352d75b0386ecf9aeb85ab9b1b3172bdfb Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 25 May 2024 04:24:32 -0400 Subject: [PATCH] chore: drop unsupported python versions and add supported ones --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ebdd532..c4b8cf1 100644 --- a/setup.py +++ b/setup.py @@ -40,10 +40,11 @@ setup( "Development Status :: 5 - Production/Stable", "Topic :: System :: Archiving :: Backup", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "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", ], description="backup a github user or organization", long_description=open_file("README.rst").read(),