From 645d0ad6fb934de6c88ef8b956ab00724a568427 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Apr 2022 11:48:16 +0200 Subject: [PATCH] Bump flake8-annotations from 2.7.0 to 2.8.0 in /notebooks (#309) * Bump flake8-annotations from 2.7.0 to 2.8.0 in /notebooks Bumps [flake8-annotations](https://github.com/sco1/flake8-annotations) from 2.7.0 to 2.8.0. - [Release notes](https://github.com/sco1/flake8-annotations/releases) - [Changelog](https://github.com/sco1/flake8-annotations/blob/main/CHANGELOG.md) - [Commits](https://github.com/sco1/flake8-annotations/compare/v2.7.0...v2.8.0) --- updated-dependencies: - dependency-name: flake8-annotations dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Ignore new ANN401 introduced by https://github.com/sco1/flake8-annotations/issues/131 with flake8-annotations 2.8.0 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Robert Stupp --- notebooks/requirements_lint.txt | 2 +- notebooks/setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/requirements_lint.txt b/notebooks/requirements_lint.txt index 9c370625..44057ea9 100644 --- a/notebooks/requirements_lint.txt +++ b/notebooks/requirements_lint.txt @@ -17,7 +17,7 @@ bandit==1.7.4 black==22.3.0 flake8==4.0.1 -flake8-annotations==2.7.0 +flake8-annotations==2.8.0 flake8-bandit==3.0.0 flake8-black==0.3.2 flake8-bugbear==22.3.23 diff --git a/notebooks/setup.cfg b/notebooks/setup.cfg index 3dc509ba..06675166 100644 --- a/notebooks/setup.cfg +++ b/notebooks/setup.cfg @@ -1,7 +1,7 @@ [flake8] select = ANN,B,B9,B950,BLK,C,D,E,F,I,S,W -ignore = E203,E510,W503,S101,D412,W503 +ignore = ANN401,E203,E510,W503,S101,D412,W503 extend-ignore = E203 max-line-length = 140 max-complexity = 10