diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-13 16:44:15 (GMT) |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-15 17:41:29 (GMT) |
commit | e431ee86b40f9a2c9bf1e088eb7cf782dba58842 (patch) | |
tree | ec8ec3528a5c7a259c7b438c585ca61692f423c8 /pyproject.toml | |
parent | c1ddbc7fa5e34ae6aba45104e6dfb39ebb08d3eb (diff) | |
download | SCons-e431ee86b40f9a2c9bf1e088eb7cf782dba58842.zip SCons-e431ee86b40f9a2c9bf1e088eb7cf782dba58842.tar.gz SCons-e431ee86b40f9a2c9bf1e088eb7cf782dba58842.tar.bz2 |
Ruff/Mypy: Update excludes
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 31 |
1 files changed, 20 insertions, 11 deletions
diff --git a/pyproject.toml b/pyproject.toml index cb824b7..1e00257 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,17 +73,15 @@ dist-dir = "build/dist" target-version = "py37" # Lowest python version supported extend-include = ["SConstruct", "SConscript"] extend-exclude = [ - "bench", - "bin", - "doc", - "src", - "template", - "test", - "testing", - "timings", - "SCons/Tool/docbook/docbook-xsl-1.76.1", - "bootstrap.py", - "runtest.py", + "bench/", + "bin/", + "doc/", + "src/", + "template/", + "test/", + "testing/", + "timings/", + "SCons/Tool/docbook/docbook-xsl-1.76.1/", ] [tool.ruff.format] @@ -99,3 +97,14 @@ quote-style = "preserve" # Equivalent to black's "skip-string-normalization" [tool.mypy] python_version = "3.8" +exclude = [ + "^bench/", + "^bin/", + "^doc/", + "^src/", + "^template/", + "^test/", + "^testing/", + "^timings/", + "^SCons/Tool/docbook/docbook-xsl-1.76.1/", +] |