-
Notifications
You must be signed in to change notification settings - Fork 7
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
Define metadata return types #97
Conversation
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.
Typing can be simplified: Since python3.7 with an "magic" import: from __future__ import annotations
, you can use types directly without importing and also use |
d5af3c1
to
71ad84b
Compare
Seems pytest doesn't like the new syntax: https://github.com/silx-kit/h5grove/actions/runs/10612574960/job/29414512350?pr=97 Should I do what it says and install |
Seems like we opened the Pandora's box 😂 Yes, you can add |
Phew... 😅 |
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.
💪
Speaking of which, it would be nice to also add tests for more recent Python versions in the CI. |
That I will leave to you 😂 |
Addresses #96 (comment)