From 7a8b8d6b619768fd2dd64902ed6b44080977159c Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Wed, 2 Oct 2024 23:24:37 +0200 Subject: [PATCH] feat(linting): add pydantic to allow mypy to do better testing --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index f533bfe2..861f94e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -153,6 +153,9 @@ dependencies = [ "mypy-extensions==1.0.0", "ruff==0.4.8", "isort==5.13.2", + + # for more mypy tests + "pydantic==1.10.18", ] [tool.hatch.envs.linting.scripts] typing = "mypy --config-file=pyproject.toml {args:} ./src/ ./tests/ ./examples/"