From e695ae1d8e76c67455eba4d3c17d1eb4ffaac9ae Mon Sep 17 00:00:00 2001 From: pgjones Date: Fri, 17 May 2019 10:48:08 +0100 Subject: [PATCH] Loosen the h11 requirement h11 0.9.0 is also compatible with wsproto, therefore >= 0.8.1 is better defined. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e55bd9a..7275779 100644 --- a/setup.py +++ b/setup.py @@ -54,6 +54,6 @@ ], install_requires=[ "dataclasses ; python_version < '3.7'", - 'h11 ~= 0.8.1', # means: 0.8.x where x >= 1 + 'h11 >= 0.8.1', ], )