From 1c648abea21c28cd3b912d1cb2fee6cf2960e352 Mon Sep 17 00:00:00 2001 From: Michael H Date: Tue, 5 Nov 2019 05:23:25 -0500 Subject: [PATCH] uvloop + python3.8 --- setup.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index cf2c2e9f5..8f43e058e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -45,7 +45,9 @@ install_requires = Red-Lavalink==0.3.0 schema==0.7.0 tqdm==4.32.2 - uvloop==0.12.2; sys_platform != "win32" and platform_python_implementation == "CPython" + # Below is due to an issue with uvloop < 0.14 with python 3.8, move both to 0.14 at full release + uvloop==0.13.0; sys_platform != "win32" and platform_python_implementation == "CPython" and python_version<"3.8" + uvloop==0.14.0rc2; sys_platform != "win32" and platform_python_implementation == "CPython" and python_version>="3.8" websockets==6.0 yarl==1.3.0