mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-27 13:44:14 +01:00
setup: add py3.7 and 3.8, remove 3.4
This commit is contained in:
parent
964b2d3d20
commit
c5f777b548
7
setup.py
7
setup.py
@ -22,8 +22,8 @@ srcdir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "lib/")
|
||||
sys.path.insert(0, srcdir)
|
||||
|
||||
vi = sys.version_info
|
||||
if vi < (3, 4):
|
||||
raise RuntimeError("svtplay-dl requires Python 3.4 or greater")
|
||||
if vi < (3, 5):
|
||||
raise RuntimeError("svtplay-dl requires Python 3.5 or greater")
|
||||
|
||||
about = {}
|
||||
with open(os.path.join(srcdir, "svtplay_dl", "__version__.py")) as f:
|
||||
@ -55,9 +55,10 @@ setup(
|
||||
"Operating System :: POSIX",
|
||||
"Operating System :: Microsoft :: Windows",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Topic :: Internet :: WWW/HTTP",
|
||||
"Topic :: Multimedia :: Sound/Audio",
|
||||
"Topic :: Multimedia :: Video",
|
||||
|
Loading…
Reference in New Issue
Block a user