From f42892561118cd925477460a9b63e7baf157e2e3 Mon Sep 17 00:00:00 2001 From: even-wei Date: Wed, 25 Dec 2024 11:49:10 +0800 Subject: [PATCH] Remove support Python 3.8 Signed-off-by: even-wei --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 68c5e62a..62b649c1 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ def _get_version(): entry_points={ 'console_scripts': ['recce = recce.cli:cli'] }, - python_requires=">=3.8", + python_requires=">=3.9", packages=find_packages(), install_requires=[ 'boto3', @@ -66,7 +66,6 @@ def _get_version(): "Bug Tracker": "https://github.com/InfuseAI/recce/issues", }, classifiers=[ - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",