Remove support for Python 3.6 and 3.7

Fixes #716
This commit is contained in:
Brian May
2022-03-29 11:44:35 +11:00
parent 5719d424de
commit 6d36916f48
4 changed files with 7 additions and 10 deletions

View File

@ -49,10 +49,9 @@ setup(
"License :: OSI Approved :: "
"GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: System :: Networking",
],
entry_points={
@ -60,7 +59,7 @@ setup(
'sshuttle = sshuttle.cmdline:main',
],
},
python_requires='>=3.6',
python_requires='>=3.8',
install_requires=[
],
tests_require=[