From 80e326b954972b03ba333f0252a92656dff33fdd Mon Sep 17 00:00:00 2001 From: Joao Mario Lago Date: Thu, 1 Aug 2024 09:00:59 -0300 Subject: [PATCH] pyproject.toml: Update mypy and remove pydantic.mypy * This fixes a bug related to mypy detecting wrong python version being used when analysing some modules --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d5f36d1..00cdfdc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ dependencies = [ dev = [ "black==22.3.0", "isort==5.10.1", - "mypy==0.941", + "mypy==0.981", "pydantic==1.9.0", "pylint==2.14.5", "types-Markdown==3.6.0.20240316", @@ -66,4 +66,3 @@ ignore_missing_imports = true strict = true warn_unreachable = true warn_unused_ignores = false -plugins = "pydantic.mypy"