From 8f8ba391f2cf93f18aab75fc36d57b877e99b0fc Mon Sep 17 00:00:00 2001 From: Tom Dryer Date: Sat, 3 Jun 2017 20:38:44 -0700 Subject: [PATCH] Increase minimum aiohttp requirement aiohttp with Python 3.4.2 can send a malformed cookie header: https://github.com/aio-libs/aiohttp/issues/1566 Fixes #298. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f427a933..29474979 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ def run_tests(self): # especially for end-users (non-developers) who use pip to install hangups. install_requires = [ 'ConfigArgParse==0.11.0', - 'aiohttp>=1.2,<3', + 'aiohttp>=1.3,<3', 'appdirs>=1.4,<1.5', 'readlike==0.1.2', 'requests>=2.6.0,<3', # uses semantic versioning (after 2.6)