From 93ba638ee95793f6f3b3f1d7dc91c9b6fd023b98 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Tue, 4 Oct 2022 15:24:06 -0700 Subject: [PATCH] Upgrade to flake8 5.0.4 (from 3.9.2) This moves the project to a more modern version of flake8 (and its dependencies). No new lint issues were identified by this upgrade. --- setup.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 332bad3f..78cc0fd3 100644 --- a/setup.py +++ b/setup.py @@ -29,11 +29,7 @@ # Minimal dependencies required to test asyncpg. TEST_DEPENDENCIES = [ - # pycodestyle is a dependency of flake8, but it must be frozen because - # their combination breaks too often - # (example breakage: https://gitlab.com/pycqa/flake8/issues/427) - 'pycodestyle~=2.7.0', - 'flake8~=3.9.2', + 'flake8~=5.0.4', 'uvloop>=0.15.3; platform_system != "Windows" and python_version >= "3.7"', ]