Update setup.py requiring at least python 3.8

This commit is contained in:
karlch 2023-07-11 22:21:52 +02:00
parent 4c111d3f39
commit 80840c0e79
1 changed files with 2 additions and 4 deletions

View File

@ -38,8 +38,8 @@ def read_from_init(name):
setuptools.setup(
python_requires=">=3.6",
install_requires=["PyQt5>=5.9.2"],
python_requires=">=3.8",
install_requires=["PyQt5>=5.13.2"],
packages=setuptools.find_packages(),
ext_modules=[manipulate_module],
entry_points={"gui_scripts": ["vimiv = vimiv.startup:main"]},
@ -67,8 +67,6 @@ setuptools.setup(
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"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",