-
Notifications
You must be signed in to change notification settings - Fork 165
Support for recursive datatypes #866
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
base: main
Are you sure you want to change the base?
Changes from 7 commits
6f74eb0
1713a61
fccb7c3
1e60919
14097bd
459a1a9
115d17a
5765f6c
27e3c2d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ jobs: | |
pip3 install --pre torch -f "${{ steps.pytorch_channel.outputs.value }}" | ||
- name: Install dependencies | ||
run: | | ||
pip3 install requests mypy==0.812 graphviz numpy | ||
pip3 install requests mypy==0.981 graphviz numpy | ||
- name: Build TorchData | ||
run: | | ||
python setup.py develop | ||
|
@@ -64,7 +64,7 @@ jobs: | |
run: | | ||
set -eux | ||
STATUS= | ||
if ! mypy --config=mypy.ini; then | ||
if ! mypy --config=mypy.ini --enable-recursive-aliases --install-types --non-interactive; then | ||
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. I would also like to point out that, Quoting relevant part from the above documentation link :- I don't think downloading the package stubs would be a bottleneck; but if it is, then we could think of using cached installations. (just a suggestion) 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. Thank you for providing the idea. I think it's fine for now as torchdata is still a small package. We might want to investigate if we have noticed significant overhead. |
||
STATUS=fail | ||
fi | ||
if [ -n "$STATUS" ]; then | ||
|
Uh oh!
There was an error while loading. Please reload this page.