-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Add static type check with mypy #2195
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
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
d26d1c6
add mypy config
pmeier 4088a90
fix syntax error
pmeier e768986
fix annotations in torchvision/utils.py
pmeier 9e9d4a2
add mypy type check to CircleCI
pmeier 384d853
add mypy cache to ignore files
pmeier 4c8fbf4
try fix CI
pmeier e12c4d4
ignore flake8 F821 since it interferes with mypy
pmeier 96f92d0
add mypy type check to config generator
pmeier d8adb40
explicitly set config files
pmeier File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,4 @@ htmlcov | |
*.swp | ||
*.swo | ||
gen.yml | ||
.mypy_cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[mypy] | ||
|
||
files = torchvision | ||
show_error_codes = True | ||
pretty = True | ||
|
||
[mypy-torchvision.datasets.*] | ||
|
||
ignore_errors = True | ||
|
||
[mypy-torchvision.io.*] | ||
|
||
ignore_errors = True | ||
|
||
[mypy-torchvision.models.*] | ||
|
||
ignore_errors = True | ||
|
||
[mypy-torchvision.ops.*] | ||
|
||
ignore_errors = True | ||
|
||
[mypy-torchvision.transforms.*] | ||
|
||
ignore_errors = True | ||
|
||
[mypy-PIL] | ||
|
||
ignore_missing_imports = True | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,5 @@ max-line-length = 120 | |
|
||
[flake8] | ||
max-line-length = 120 | ||
ignore = F401,E402,F403,W503,W504 | ||
ignore = F401,E402,F403,W503,W504,F821 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Interesting, in the future we might want to remove this F821 and instead fix the annotations |
||
exclude = venv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Without setting this explicitly
flake8
seems to ignore the config altogether. For an example seehttps://circleci.com/gh/pytorch/vision/135718?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link
setup.cfg
specifies to ignoreF821
, but it still errors with it.