From cbf62c5cc2b0a328eb2d2c4a7e65e41e5097f686 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Fri, 23 Mar 2018 15:16:11 +0100 Subject: [PATCH] chore(deps): Make sure aiohttp >= 2.3.2 To avoid this bug on some machines: Traceback (most recent call last): [...] web.run_app(app, sock=sock, access_log=logger) [...] host, port = sock.getsockname() ValueError: too many values to unpack (expected 2) See a better description at https://github.com/aio-libs/aiohttp/pull/2431 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9b0cdd09..b313a91a 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ 'localstripe': ['fake-stripe-v3.js'], }, install_requires=[ - 'aiohttp >=2.3.0', + 'aiohttp >=2.3.2', 'python-dateutil >=2.6.1', ], )