From d0f0e73e96fc7bd22e49c90cff75e33cf8befbd9 Mon Sep 17 00:00:00 2001 From: allandialpad Date: Mon, 16 Nov 2020 15:08:27 -0500 Subject: [PATCH] remove upper bound for multidict --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6fc0ecbb..ba97188c 100644 --- a/setup.py +++ b/setup.py @@ -80,13 +80,13 @@ requirements = [ ujson, "aiofiles>=0.6.0", "websockets>=8.1,<9.0", - "multidict==5.0.0", + "multidict>=5.0,<6.0", "httpx==0.15.4", ] tests_require = [ "pytest==5.2.1", - "multidict==5.0.0", + "multidict>=5.0,<6.0", "gunicorn", "pytest-cov", "httpcore==0.3.0",