From aea2e4e7f4300421f87e98bffafb2534310d7d70 Mon Sep 17 00:00:00 2001 From: Adam Hopkins Date: Mon, 15 Feb 2021 14:18:42 +0200 Subject: [PATCH] Fix uvloop to 0.14.0 --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c3f79166..6ec9ad5d 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,8 @@ setup_kwargs = { "author": "Sanic Community", "author_email": "admhpkns@gmail.com", "description": ( - "A web server and web framework that's written to go fast. Build fast. Run fast." + "A web server and web framework that's written to go fast. " + "Build fast. Run fast." ), "long_description": long_description, "packages": ["sanic"], @@ -80,7 +81,7 @@ env_dependency = ( '; sys_platform != "win32" ' 'and implementation_name == "cpython"' ) ujson = "ujson>=1.35" + env_dependency -uvloop = "uvloop>=0.5.3" + env_dependency +uvloop = "uvloop==0.14.0" + env_dependency requirements = [ "httptools>=0.0.10",