-
Notifications
You must be signed in to change notification settings - Fork 2
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
✨: create init file #12
base: main
Are you sure you want to change the base?
Conversation
src/array_api_typing/_version.py
Outdated
# This file is automatically generated by Hatch | ||
version = '0.1.dev5+g9027b7d.d20241205' | ||
version_tuple = (0, 1, 'dev5', 'g9027b7d.d20241205') | ||
|
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.
I'm guessing this red steering wheel is trying to tell us that there's a trailing newline missing
@@ -0,0 +1,5 @@ | |||
"""Static typing support for the array API standard.""" | |||
|
|||
__all__: list[str] = [] |
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.
alternative workaround for type-checkers that still don't realize that __all__
is always a sequence of str
in 2024:
__all__: list[str] = [] | |
__all__ = () |
src/array_api_typing/_version.py
Outdated
version = '0.1.dev5+g9027b7d.d20241205' | ||
version_tuple = (0, 1, 'dev5', 'g9027b7d.d20241205') |
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.
why does it start counting at 5 🤔 ?
Signed-off-by: nstarman <[email protected]>
Signed-off-by: nstarman <[email protected]>
Signed-off-by: nstarman <[email protected]>
Co-authored-by: Joren Hammudoglu <[email protected]> Signed-off-by: Nathaniel Starkman <[email protected]>
Signed-off-by: nstarman <[email protected]>
Signed-off-by: nstarman <[email protected]>
needs rebase |
No description provided.