From 3f5193737f4ed8a8c560b90b4f41e40fadd04084 Mon Sep 17 00:00:00 2001 From: Bas van Beek Date: Tue, 3 Oct 2023 15:20:42 +0200 Subject: [PATCH] STY: let flake8 ignore the auto generated version file --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2c040eba..5b2f8276 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -123,6 +123,9 @@ source = ["src"] [tool.flake8] max-line-length = 100 +exclude = [ + "src/qmflows/_version.py", +] [tool.pytest.ini_options] testpaths = "src test"