Adjust Python versions in setup.py
This commit is contained in:
parent
bd3774dfc8
commit
3288ec8598
7
setup.py
7
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in New Issue