1
0
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:
Johan Andersson 2020-09-14 23:05:30 +02:00
parent 964b2d3d20
commit c5f777b548

View File

@ -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",