@@ 11,7 11,7 @@ Wormhole
Dependency
----------
-- Python >= 3.5.3
+- Python >= 3.6
- `uvloop <https://github.com/MagicStack/uvloop>`_ (optional)
Docker Image Usage
@@ 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",
@@ 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