From ec67cf7b178e0cee126a5b023d10cb4f4a1b8e0d Mon Sep 17 00:00:00 2001 From: Einar Forselv Date: Thu, 26 Oct 2023 18:09:16 +0200 Subject: [PATCH 1/3] Recursively ignore all pymunk modules --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7ffade341..6da7fc1ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -146,7 +146,7 @@ module = "PIL.*" ignore_missing_imports = true [[tool.mypy.overrides]] -module = "pymunk" +module = "pymunk.*" ignore_missing_imports = true [[tool.mypy.overrides]] From c27078abf9bea8c036a0d1d2f0d13b7415b4ebca Mon Sep 17 00:00:00 2001 From: Einar Forselv Date: Thu, 26 Oct 2023 18:17:24 +0200 Subject: [PATCH 2/3] Test including pymunk entirely --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6da7fc1ef..a00437a07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -145,9 +145,9 @@ ignore_missing_imports = true module = "PIL.*" ignore_missing_imports = true -[[tool.mypy.overrides]] -module = "pymunk.*" -ignore_missing_imports = true +# [[tool.mypy.overrides]] +# module = "pymunk.*" +# ignore_missing_imports = true [[tool.mypy.overrides]] module = "pytiled_parser.*" From 23e6b779adf122125302aa451d7735023bbe47b1 Mon Sep 17 00:00:00 2001 From: Einar Forselv Date: Thu, 26 Oct 2023 19:32:02 +0200 Subject: [PATCH 3/3] Revert previous commit --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a00437a07..6da7fc1ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -145,9 +145,9 @@ ignore_missing_imports = true module = "PIL.*" ignore_missing_imports = true -# [[tool.mypy.overrides]] -# module = "pymunk.*" -# ignore_missing_imports = true +[[tool.mypy.overrides]] +module = "pymunk.*" +ignore_missing_imports = true [[tool.mypy.overrides]] module = "pytiled_parser.*"