-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Link to issues in mypy.ini for non py.typed dependencies #4561
Link to issues in mypy.ini for non py.typed dependencies #4561
Conversation
mypy.ini
Outdated
# - All jaraco modules are still untyped | ||
# - _validate_project sometimes complains about trove_classifiers (#4296) | ||
# - wheel appears to be untyped | ||
[mypy-distutils._modified,jaraco.*,trove_classifiers,wheel.*] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
trove_classifiers
being flagged as a missing install was a symptom of the issue linked below python/mypy#11936 (comment) that is better (and already) worked around with the configuration below
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ddf3ff0
to
4a4fac2
Compare
# - _validate_project sometimes complains about trove_classifiers (#4296) | ||
# - wheel appears to be untyped | ||
[mypy-distutils._modified,jaraco.*,trove_classifiers,wheel.*] | ||
# - The following are not marked as py.typed: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment for cross-linking:
- jaraco.develop: Fully type module then mark as
py.typed
jaraco/jaraco.develop#22 - jaraco.envs: Fully type module then mark as
py.typed
jaraco/jaraco.envs#7 - jaraco.packaging: Fully type module then mark as
py.typed
jaraco/jaraco.packaging#20 - jaraco.path: Fully type module then mark as
py.typed
jaraco/jaraco.path#2 - jaraco.test: Fully type module then mark as
py.typed
jaraco/jaraco.test#7 - jaraco.text: Fully type module then mark as
py.typed
jaraco/jaraco.text#17 - wheel: does not intend on exposing a programatic API General typing improvement wheel#610 (comment)
4a4fac2
to
0c4df19
Compare
6cfba7a
to
c9adf2e
Compare
c9adf2e
to
6081e1d
Compare
Thank you! |
Summary of changes
As requested here: jaraco/skeleton#136 (comment)
Pull Request Checklist
newsfragments/
. (not user facing)(See documentation for details)