From bbb5419ffe7d8b6bf0d060be4640ccfe36e0bda2 Mon Sep 17 00:00:00 2001 From: omerbn Date: Sun, 24 Sep 2017 03:41:32 +0300 Subject: [PATCH] remove uvloop from install (to support windows users) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 17f2c67e..7de7d951 100644 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ if strtobool(os.environ.get("SANIC_NO_UJSON", "no")): print("Installing without uJSON") requirements.remove(ujson) -if strtobool(os.environ.get("SANIC_NO_UVLOOP", "no")): +if True or strtobool(os.environ.get("SANIC_NO_UVLOOP", "no")): print("Installing without uvLoop") requirements.remove(uvloop)