From 5fadd382016a726b8eb4c07d28173db2c7e6609c Mon Sep 17 00:00:00 2001 From: Chris Robertson Date: Sat, 20 Feb 2021 07:11:39 +0000 Subject: [PATCH] unpin uvloop (#959) Now that uvloop sets python_requires the pinning isn't needed, but we do need to ignore the packages with missing python_requires https://github.com/MagicStack/uvloop/pull/401 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5f41722..73f1771 100755 --- a/setup.py +++ b/setup.py @@ -53,8 +53,7 @@ def get_packages(package): extra_requirements = [ "websockets==8.*", "httptools==0.1.* ;" + env_marker_cpython, - "uvloop==0.14.0; python_version == '3.6' and " + env_marker_cpython, - "uvloop>=0.14.0; python_version >= '3.7' and " + env_marker_cpython, + "uvloop>=0.14.0,!=0.15.0,!=0.15.1; " + env_marker_cpython, "colorama>=0.4;" + env_marker_win, "watchgod>=0.6", "python-dotenv>=0.13",