From 3ca45b7374ca8262b71e8197aba28f5580ab9550 Mon Sep 17 00:00:00 2001 From: Anderson Bravalheri Date: Wed, 20 Mar 2024 09:19:25 -0700 Subject: [PATCH] Ignore 'import-not-found' for _validate_pyproject --- mypy.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy.ini b/mypy.ini index ee12ebb193..45671826b1 100644 --- a/mypy.ini +++ b/mypy.ini @@ -32,5 +32,5 @@ ignore_missing_imports = True # - pkg_resources tests create modules that won't exists statically before the test is run. # Let's ignore all "import-not-found" since, if an import really wasn't found, then the test would fail. # - setuptools._vendor.packaging._manylinux: Mypy issue, this vendored module is already excluded! -[mypy-pkg_resources.tests.*,setuptools._vendor.packaging._manylinux] +[mypy-pkg_resources.tests.*,setuptools._vendor.packaging._manylinux,setuptools.config._validate_pyproject.*] disable_error_code = import-not-found