From 32a72b88108f7f625ff53443ef53e871bcadd90a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Nov 2022 13:31:03 +0000 Subject: [PATCH 1/3] Bump flake8 from 5.0.4 to 6.0.0 Bumps [flake8](https://github.com/pycqa/flake8) from 5.0.4 to 6.0.0. - [Release notes](https://github.com/pycqa/flake8/releases) - [Commits](https://github.com/pycqa/flake8/compare/5.0.4...6.0.0) --- updated-dependencies: - dependency-name: flake8 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b894e76..e3b9e53 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ distlib==0.3.6 docutils==0.19 fastapi==0.88.0 filelock==3.8.0 -flake8==5.0.4 +flake8==6.0.0 flake8-isort==5.0.0 h11==0.14.0 identify==2.5.8 From 08d5f14590344ad4f627b738f01f59ecb6930ec2 Mon Sep 17 00:00:00 2001 From: Rose Yemelyanova Date: Tue, 29 Nov 2022 13:34:53 +0000 Subject: [PATCH 2/3] bumped pycodestyle to 2.10.0 to resolve conflict --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e3b9e53..63ba76c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -38,7 +38,7 @@ platformdirs==2.5.3 pluggy==1.0.0 pre-commit==2.20.0 py==1.11.0 -pycodestyle==2.9.1 +pycodestyle==2.10.0 pydantic==1.10.2 pygments==2.13.0 pyparsing==3.0.9 From c8f15497cae7a9edb33edd33a7a700066d7f740e Mon Sep 17 00:00:00 2001 From: Rose Yemelyanova Date: Tue, 29 Nov 2022 14:12:15 +0000 Subject: [PATCH 3/3] changed setup.cfg to be in-line with flake8 not supporting in-line comments for keys. --- setup.cfg | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 96656b3..3fb9d2d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -68,8 +68,10 @@ float_to_top=true # Make flake8 respect black's line length (default 88), max-line-length = 88 extend-ignore = - E203, # See https://github.com/PyCQA/pycodestyle/issues/373 - F811, # support typing.overload decorator + # See https://github.com/PyCQA/pycodestyle/issues/373 + E203, + # support typing.overload decorator + F811, [tool:pytest] # Run pytest with all our checkers, and don't spam us with massive tracebacks on error