From 94322f4583c66a65dd233623d11b15539f9da4b8 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Tue, 16 Apr 2019 19:37:33 +0100 Subject: [PATCH] Require aiohttp 3.3 or higher That release of aiohttp fixed their CancelledError bug --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d53f3e4..b3adcce 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setuptools.setup( # "groestlcoin_hash" package is required to sync Groestlcoin network. # "pycryptodomex" package is required to sync SmartCash network. install_requires=['aiorpcX>=0.15.0,<0.16', 'attrs', - 'plyvel', 'pylru', 'aiohttp >= 2'], + 'plyvel', 'pylru', 'aiohttp>=3.3'], packages=setuptools.find_packages(include=('electrumx*',)), description='ElectrumX Server', author='Neil Booth',