From 31a5d8fa77be68d4f837f0a80a611675dce49f4b Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 12 Jul 2018 10:41:20 -0700 Subject: [PATCH] Bump aiohttp to fix compatibility with Python 3.7 Tests failed here: https://travis-ci.org/simonw/datasette/jobs/403223333 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 67253a7f..4a38faba 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ setup( extras_require={ 'test': [ 'pytest==3.6.0', - 'aiohttp==2.3.2', + 'aiohttp==3.3.2', 'beautifulsoup4==4.6.0', ] },