From 749723d522a76f779cc8c9e07a147cde9c4d1114 Mon Sep 17 00:00:00 2001 From: quantumtec Date: Mon, 8 Nov 2021 16:53:58 +0100 Subject: [PATCH] Bump pinning httptools 0.2.0 (#1243) * remove upper bound on httptools pinning to enable cp3.10 wheels * add new upper bound on httptools to avoid breaking changes Co-authored-by: quantumtec --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1a1f6a1ea..bd0ecc215 100755 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ def get_packages(package): extra_requirements = [ "websockets>=9.1; " + env_marker_below_37, "websockets>=10.0; " + env_marker_gte_37, - "httptools==0.2.*", + "httptools>=0.2.0,<0.4.0", "uvloop>=0.14.0,!=0.15.0,!=0.15.1; " + env_marker_cpython, "colorama>=0.4;" + env_marker_win, "watchgod>=0.6",