From e6abadec7e00505eea9a91578f2d63939ce9a56c Mon Sep 17 00:00:00 2001 From: YoSTEALTH <35307184+YoSTEALTH@users.noreply.github.com> Date: Sun, 5 Jul 2020 20:29:27 -0600 Subject: added "python_requires" people are installing this package in python2 and running into issues of syntax error which is only used in pyhon3.5, thus the need of `python_requires` --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 610d702..c08a0c0 100755 --- a/setup.py +++ b/setup.py @@ -17,6 +17,7 @@ setup( test_suite = 'mpv-test', keywords = ['mpv', 'library', 'video', 'audio', 'player', 'display', 'multimedia'], + python_requires='>=3.5', classifiers = [ 'Development Status :: 4 - Beta', 'Environment :: X11 Applications', -- cgit