From 101fd22332844e94487d3ee5c33afb49686c6292 Mon Sep 17 00:00:00 2001 From: jorenham Date: Thu, 17 Oct 2024 20:53:53 +0200 Subject: [PATCH] include `codemods.py` in the typecheck and linter config --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6132e8b9..fbbfaecc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ name = "scipy-stubs" packages = [{include = "scipy-stubs"}] readme = "README.md" repository = "https://github.com/jorenham/scipy-stubs/" -version = "1.14.1.0" +version = "1.14.1.1.dev0" [tool.poetry.urls] "Bug Tracker" = "https://github.com/jorenham/scipy-stubs/issues" @@ -105,7 +105,7 @@ disallow_incomplete_defs = false # TODO warn_unused_ignores = true [tool.pyright] -include = ["scipy-stubs", "tests/typetests"] +include = ["scipy-stubs", "tests/typetests", "codemods.py"] venv = ".venv" venvPath = "." stubPath = "." @@ -129,7 +129,7 @@ force-exclude = true target-version = "py310" # https://typing.readthedocs.io/en/latest/guides/writing_stubs.html#maximum-line-length line-length = 130 -src = ["scipy-stubs"] +src = ["scipy-stubs", "codemods.py"] [tool.ruff.format] line-ending = "lf"