From 88a71d57da22e6fa7be6c4f047828a6b8e0ad38a Mon Sep 17 00:00:00 2001 From: Jack Gerrits Date: Wed, 20 Mar 2024 18:36:43 -0400 Subject: [PATCH] Ignore deprecated files from mypy test (#2103) --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index fbcbb9b0a548..f62668659e2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,6 +69,13 @@ files = [ "autogen/oai/openai_utils.py", ] +exclude = [ + "autogen/math_utils\\.py", + "autogen/oai/completion\\.py", + "autogen/agentchat/contrib/compressible_agent\\.py", + "autogen/agentchat/contrib/math_user_proxy_agent.py", +] + strict = true python_version = "3.8" ignore_missing_imports = true