Bump minimum python version to 3.7

This commit is contained in:
jaseg 2022-04-17 22:36:52 +02:00
parent b0d34af527
commit 3d956b91f8
2 changed files with 11 additions and 4 deletions

View file

@ -17,7 +17,7 @@ setup(
test_suite = 'tests',
keywords = ['mpv', 'library', 'video', 'audio', 'player', 'display',
'multimedia'],
python_requires='>=3.5',
python_requires='>=3.7',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: X11 Applications',
@ -26,8 +26,10 @@ setup(
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Multimedia :: Sound/Audio :: Players',
'Topic :: Multimedia :: Video :: Display']
)