From: Zsolt Dollenstein Date: Sat, 25 Sep 2021 19:45:13 +0000 (+0100) Subject: Bump required aiohttp version to 3.7.4 (#2509) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/1af533108968e40cc005079a328ad117a864af13 Bump required aiohttp version to 3.7.4 (#2509) Commit history before merge: * Bump required aiohttp version to 3.7.4 This release includes an important security fix (https://github.com/aio-libs/aiohttp/security/advisories/GHSA-v6wp-4m6f-gcjg) and many other improvements. * add changelog entry * Let's not forget about Pipfile Co-authored-by: Richard Si <63936253+ichard26@users.noreply.github.com> --- diff --git a/CHANGES.md b/CHANGES.md index 2a9b649..1ff2cea 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,6 +5,7 @@ ### _Blackd_ - Remove dependency on aiohttp-cors (#2500) +- Bump required aiohttp version to 3.7.4 (#2509) ## 21.9b0 diff --git a/Pipfile b/Pipfile index 66ded8b..6c635a6 100644 --- a/Pipfile +++ b/Pipfile @@ -40,7 +40,7 @@ readme_renderer = "*" black = {editable = true, extras = ["d", "jupyter"], path = "."} [packages] -aiohttp = ">=3.6.0" +aiohttp = ">=3.7.4" platformdirs= ">=2" click = ">=8.0.0" mypy_extensions = ">=0.4.3" diff --git a/setup.py b/setup.py index 19df9be..015f321 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ setup( "mypy_extensions>=0.4.3", ], extras_require={ - "d": ["aiohttp>=3.6.0"], + "d": ["aiohttp>=3.7.4"], "colorama": ["colorama>=0.4.3"], "python2": ["typed-ast>=1.4.2"], "uvloop": ["uvloop>=0.15.2"],