From 04ae29d58ca5d03c50067d63b266c79314205c43 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Mon, 13 Nov 2023 18:56:04 +0000 Subject: [PATCH] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0b6ffc6..396859b 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def read(f): return open(os.path.join(os.path.dirname(__file__), f)).read().strip() -install_requires = ['aiohttp>=3.2.0'] +install_requires = ["aiohttp>=3.9"] tests_require = install_requires + ['pytest'] extras_require = {'session': 'aiohttp-session'}