diff --git a/mypy.ini b/mypy.ini index 833d9a3..5cda38c 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,3 +1,3 @@ [mypy] ignore_missing_imports = True -exclude = .tox|build +exclude = .eggs|.tox|build|venv diff --git a/prospector.yaml b/prospector.yaml index ac4ea45..ca3b256 100644 --- a/prospector.yaml +++ b/prospector.yaml @@ -4,8 +4,10 @@ doc-warnings: true member-warnings: true ignore-paths: + - .eggs - .tox - build + - venv ignore-patterns: - setup.py diff --git a/tox.ini b/tox.ini index 3ec9907..0fa2dd7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,14 +1,16 @@ [tox] skip_missing_interpreters = true -envlist = py{37,38,39,310} +envlist = py{37,38,39,310,311,312} [flake8] ignore = N802 # function name should be lowercase W504 # line break after binary operator exclude = + .eggs .tox build + venv setup.py max-line-length=130 per-file-ignores = @@ -22,6 +24,8 @@ lines_after_imports = 2 line_length = 120 multi_line_output = 5 skip = + .eggs .tox build + venv setup.py