Adjust Python versions in setup.py

This commit is contained in:
Florian Bruhin 2024-10-13 14:41:39 +02:00
parent bd3774dfc8
commit 3288ec8598
1 changed files with 3 additions and 4 deletions

View File

@ -57,9 +57,8 @@ try:
entry_points={'gui_scripts':
['qutebrowser = qutebrowser.qutebrowser:main']},
zip_safe=True,
install_requires=['jinja2', 'PyYAML',
'importlib_resources>=1.1.0; python_version < "3.9"'],
python_requires='>=3.8',
install_requires=['jinja2', 'PyYAML'],
python_requires='>=3.9',
name='qutebrowser',
version=_get_constant('version'),
description=_get_constant('description'),
@ -81,10 +80,10 @@ try:
'Operating System :: MacOS',
'Operating System :: POSIX :: BSD',
'Programming Language :: Python :: 3',
'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',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Browsers',