From c00005f41af51fb5e7aa7cf8064cfbfc7feb3015 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sun, 7 Nov 2021 01:44:13 +0200 Subject: [PATCH] Update dependencies in setup.py --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 6f12b437..9cb6b6c6 100755 --- a/setup.py +++ b/setup.py @@ -61,16 +61,16 @@ setup( 'Topic :: Software Development :: Libraries :: Application Frameworks', ], install_requires=[ - 'aiohttp>=3.7.2,<4.0.0', - 'Babel>=2.8.0', - 'certifi>=2020.6.20', + 'aiohttp>=3.8.0,<3.9.0', + 'Babel>=2.9.1,<2.10.0', + 'certifi>=2021.10.8', ], extras_require={ 'proxy': [ 'aiohttp-socks>=0.5.3,<0.6.0', ], 'fast': [ - 'uvloop>=0.14.0,<0.15.0', + 'uvloop>=0.16.0,<0.17.0', 'ujson>=1.35', ], },