From 29b5cd2e4fd4e77c46f0f5d4560b53bf0b9f6ebe Mon Sep 17 00:00:00 2001 From: johndoknjas Date: Mon, 15 Apr 2024 19:13:50 -0700 Subject: [PATCH] Update the python requirement from >= 3.3 to >= 3.8. --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index f1066ba..6269cb3 100644 --- a/setup.py +++ b/setup.py @@ -74,14 +74,15 @@ def run(self): author_email='snuggle@sprinkly.net', install_requires=requirements, py_modules = ['hypixel', 'leveling'], - python_requires='>=3.3', + python_requires='>=3.8', classifiers=[ 'Development Status :: 4 - Beta', 'Natural Language :: English', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.4', - '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', 'Topic :: Games/Entertainment', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules',