diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-06 00:44:34 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-06 00:59:04 +0530 |
commit | 14b17a551f0c9b3117dfb3a3c83ff0e100195bd7 (patch) | |
tree | 0f4967a18e281f4d0e5a087872c8b2849f097ef5 /setup.py | |
parent | 2ec1759f9d788fb277a8b618a346a34194d70eee (diff) | |
download | hypervideo-pre-14b17a551f0c9b3117dfb3a3c83ff0e100195bd7.tar.lz hypervideo-pre-14b17a551f0c9b3117dfb3a3c83ff0e100195bd7.tar.xz hypervideo-pre-14b17a551f0c9b3117dfb3a3c83ff0e100195bd7.zip |
Remove support for obsolete python versions
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -88,26 +88,16 @@ setup( 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.2', - 'Programming Language :: Python :: 3.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', 'Programming Language :: Python :: Implementation', 'Programming Language :: Python :: Implementation :: CPython', - 'Programming Language :: Python :: Implementation :: IronPython', - 'Programming Language :: Python :: Implementation :: Jython', 'Programming Language :: Python :: Implementation :: PyPy', 'License :: Public Domain', 'Operating System :: OS Independent', ], - python_requires='>=2.6', + python_requires='>=3.6', cmdclass={'build_lazy_extractors': build_lazy_extractors}, **params |