-
Notifications
You must be signed in to change notification settings - Fork 911
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
Add more complete type annotations in polars interpreter #15942
Add more complete type annotations in polars interpreter #15942
Conversation
No functional change intended. |
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.
Approving the packaging changes, looks good to me. I'm happy to see us adding a py.typed
😁
@@ -62,8 +62,6 @@ target-version = "py39" | |||
fix = true | |||
|
|||
[tool.ruff.lint] | |||
# __init__.py must re-export everything it imports | |||
ignore-init-module-imports = false |
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.
This option is deprecated in ruff
08fcafb
to
d623879
Compare
We can check this with: pyright --verifytypes cudf_polars --ignoreexternal Which reports a "type completeness" score of around 94%. This will improve once pylibcudf gets type stubs.
d623879
to
019c95a
Compare
/merge |
Description
We can check this with:
Which reports a "type completeness" score of around 94%. This will
improve once pylibcudf gets type stubs.
Checklist