setup.py: Bump minimum python version to 3.9

This commit is contained in:
derrod 2022-11-04 14:54:30 +01:00
parent 6709e8aa4f
commit 4c99bf8987
1 changed files with 3 additions and 4 deletions

View File

@ -8,8 +8,8 @@ from setuptools import setup
from legendary import __version__ as legendary_version
if sys.version_info < (3, 8):
sys.exit('python 3.8 or higher is required for legendary')
if sys.version_info < (3, 9):
sys.exit('python 3.9 or higher is required for legendary')
with open("README.md", "r") as fh:
long_description_l = fh.readlines()
@ -47,11 +47,10 @@ setup(
description='Free and open-source replacement for the Epic Games Launcher application',
long_description=long_description,
long_description_content_type="text/markdown",
python_requires='>=3.8',
python_requires='>=3.9',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft',