Skip to content

Commit ddf3ff0

Browse files
committed
Link to issues in mypy.ini for non py.typed dependencies
1 parent 7aa30d0 commit ddf3ff0

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

mypy.ini

+6-4
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,12 @@ disable_error_code = attr-defined
3131
disable_error_code = import-not-found
3232

3333
# - distutils._modified has different errors on Python 3.8 [import-untyped], on Python 3.9+ [import-not-found]
34-
# - All jaraco modules are still untyped
35-
# - _validate_project sometimes complains about trove_classifiers (#4296)
36-
# - wheel appears to be untyped
37-
[mypy-distutils._modified,jaraco.*,trove_classifiers,wheel.*]
34+
# - The following are not marked as py.typed:
35+
# - jaraco.envs: https://github.com/jaraco/jaraco.envs/issues/7
36+
# - jaraco.path: https://github.com/jaraco/jaraco.path/issues/2
37+
# - jaraco.text: https://github.com/jaraco/jaraco.text/issues/17
38+
# - wheel: does not intend on exposing a programatic API https://github.com/pypa/wheel/pull/610#issuecomment-2081687671
39+
[mypy-distutils._modified,jaraco.envs,jaraco.path,jaraco.text,wheel.*]
3840
ignore_missing_imports = True
3941

4042
# Even when excluding a module, import issues can show up due to following import

0 commit comments

Comments
 (0)