From eeeec6710f0297bed9744cd8085d325e84191a03 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Fri, 17 Jan 2025 22:35:25 -0800 Subject: [PATCH] pyproject: Ignore missing types for numpy (needed by pytest) - Otherwise, on Debian stable, running make check-type results in following error: /usr/lib/python3/dist-packages/_pytest/python_api.py:24: error: Cannot find implementation or library stub for module named "numpy" [import] Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index a9df6c7e9..7253f4d34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -163,6 +163,7 @@ module = [ "dbus.*", "django.*", "gi.*", + "numpy.*", "pam.*", "pexpect.*", "pgi.*",