diff options
author | jaseg <136313+jaseg@users.noreply.github.com> | 2024-05-16 13:36:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-16 13:36:49 +0200 |
commit | 5bb298ad11b7ad7dbeeddfd87546c0d34b28397c (patch) | |
tree | 5e2fcb60d0682c7b8e958f829523e85fffcccd8e | |
parent | 4dcfba9d40d99ec95a02fdce3349a29f10fb8917 (diff) | |
download | python-mpv-5bb298ad11b7ad7dbeeddfd87546c0d34b28397c.tar.gz python-mpv-5bb298ad11b7ad7dbeeddfd87546c0d34b28397c.tar.bz2 python-mpv-5bb298ad11b7ad7dbeeddfd87546c0d34b28397c.zip |
pyproject.toml: Update python version classifiers, bump min to 3.9
-rw-r--r-- | pyproject.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index b15441f..5aff76a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ description = "A python interface to the mpv media player" readme = "README.rst" authors = [{name = "jaseg", email = "mpv@jaseg.de"}] license = {text = "GPLv2+ or LGPLv2.1+"} -requires-python = ">=3.7" +requires-python = ">=3.9" keywords = ['mpv', 'library', 'video', 'audio', 'player', 'display', 'multimedia'] classifiers = [ 'Development Status :: 5 - Production/Stable', @@ -23,10 +23,10 @@ classifiers = [ 'Natural Language :: English', 'Operating System :: POSIX', 'Programming Language :: C', - 'Programming Language :: Python :: 3.7', - '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 :: Multimedia :: Sound/Audio :: Players', 'Topic :: Multimedia :: Video :: Display' ] |