From 54d729ccc1638180a51e6ab600c4724e6424b048 Mon Sep 17 00:00:00 2001 From: Kevin Michel Date: Fri, 28 Aug 2020 16:47:49 +0200 Subject: [PATCH] Upgrade maximum h11 dependency version to 0.10 (#772) The h11 Changelog for 0.10 only include those items: - Drop support for Python 3.4. - Support Python 3.8. - Make error messages returned by match failures less ambiguous (#98). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2978d31bf..f3599b9fb 100755 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def get_packages(package): minimal_requirements = [ "click==7.*", - "h11>=0.8,<0.10", + "h11>=0.8,<0.11", "typing-extensions;" + env_marker_below_38, ]