From b5eed4c17edba2017b756f371cacb31b3abf6442 Mon Sep 17 00:00:00 2001 From: Connor Brinton Date: Mon, 6 Dec 2021 10:26:23 -0500 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Expand=20aiohttp=20version?= =?UTF-8?q?=20range?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A new version of aiohttp has been released, with [an important fix preventing header injection](https://github.com/aio-libs/aiohttp/issues/4818). I looked through the aiohttp changelog and wasn't able to find any breaking changes, so I believe it should be safe to use with gql. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c7e6dd7f..776be66e 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ ] + tests_requires install_aiohttp_requires = [ - "aiohttp>=3.7.1,<3.8.0", + "aiohttp>=3.7.1,<3.9.0", ] install_requests_requires = [