From 39bde7c55f7717d5ef5653abb89d86d8e0a5b04a Mon Sep 17 00:00:00 2001 From: oittaa <8972248+oittaa@users.noreply.github.com> Date: Sat, 3 Aug 2024 21:03:49 +0200 Subject: [PATCH] Prepare for a release supporting Python 3.12 (#271) --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 46bb18c..d993e6e 100644 --- a/setup.py +++ b/setup.py @@ -46,10 +46,11 @@ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "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", ], entry_points={ "console_scripts": [ @@ -60,5 +61,5 @@ "fs", "google-crc32c", ], - python_requires=">=3.7", + python_requires=">=3.8", )