Python 3.6 is a minimum requirement
3 files changed, 4 insertions(+), 5 deletions(-)

M README.rst
M setup.py
M wormhole/proxy.py
M README.rst +1 -1
@@ 11,7 11,7 @@ Wormhole
 Dependency
 ----------
 
--  Python >= 3.5.3
+-  Python >= 3.6
 -  `uvloop <https://github.com/MagicStack/uvloop>`_ (optional)
 
 Docker Image Usage

          
M setup.py +1 -2
@@ 18,7 18,7 @@ setup(
     author_email="cwt@bashell.com",
     url="https://hg.sr.ht/~cwt/wormhole",
     license="MIT",
-    description="Asynchronous I/O HTTP and HTTPS Proxy on Python >= 3.5.3",
+    description="Asynchronous I/O HTTP and HTTPS Proxy on Python >= 3.6",
     long_description=readme(),
     keywords="wormhole asynchronous web proxy",
     classifiers=[

          
@@ 29,7 29,6 @@ setup(
         "License :: OSI Approved :: MIT License",
         "Operating System :: POSIX",
         "Operating System :: Microsoft :: Windows",
-        "Programming Language :: Python :: 3.5",
         "Programming Language :: Python :: 3.6",
         "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: 3.8",

          
M wormhole/proxy.py +2 -2
@@ 2,8 2,8 @@ 
 
 import sys
 
-if sys.version_info < (3, 5):
-    print("Error: You need python 3.5.0 or above.")
+if sys.version_info < (3, 6):
+    print("Error: You need python 3.6 or newer.")
     exit(1)
 
 import os