diff options
author | jaseg <git@jaseg.de> | 2022-04-17 22:36:52 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2022-04-17 22:36:52 +0200 |
commit | 3d956b91f83d1c46520f24b3c6d8f16ccb188060 (patch) | |
tree | eeb56a29c587274640f4278faf9fe4d05c85c9a3 /setup.py | |
parent | b0d34af527ef687afc1dbcc5501707f2ff28586a (diff) | |
download | python-mpv-3d956b91f83d1c46520f24b3c6d8f16ccb188060.tar.gz python-mpv-3d956b91f83d1c46520f24b3c6d8f16ccb188060.tar.bz2 python-mpv-3d956b91f83d1c46520f24b3c6d8f16ccb188060.zip |
Bump minimum python version to 3.7
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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'] ) |