File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,7 @@ ignore_missing_imports = True
31
31
32
32
# - pkg_resources tests create modules that won't exists statically before the test is run.
33
33
# Let's ignore all "import-not-found" since, if an import really wasn't found, then the test would fail.
34
- # - setuptools._vendor.packaging._manylinux: Mypy issue, this vendored module is already excluded!
34
+ # Even when excluding vendored/generated modules, there might be problems: https://github.com/python/mypy/issues/11936#issuecomment-1466764006
35
35
[mypy-pkg_resources.tests.*,setuptools._vendor.packaging._manylinux,setuptools.config._validate_pyproject.*]
36
- disable_error_code = import-not-found
37
-
38
- # - The unused-ignore comment in setuptools.config._validate_pyproject.* is probably evaluated differently
39
- # in different versions of Python. Also, this file should already be ignored...
40
- [mypy-setuptools.config._validate_pyproject.*]
41
- disable_error_code = unused-ignore
36
+ follow_imports = silent
37
+ # silent => ignore errors when following imports
You can’t perform that action at this time.
0 commit comments