-
Notifications
You must be signed in to change notification settings - Fork 11
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
Test with Python 3.13 #230
Conversation
db165ab
to
1f53705
Compare
1f53705
to
7f18617
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #230 +/- ##
==========================================
- Coverage 76.37% 76.29% -0.08%
==========================================
Files 76 76
Lines 3521 3506 -15
==========================================
- Hits 2689 2675 -14
+ Misses 832 831 -1 ☔ View full report in Codecov by Sentry. |
@@ -67,7 +68,7 @@ lint.select = ["E", "F", "W", "C90", "I", "UP"] | |||
src = ["src"] | |||
|
|||
# Version to target for generated code. | |||
target-version = "py38" | |||
target-version = "py310" |
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.
since 3.9 is still supported for a whole year, any reason why we dont target that for now?
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.
Writing union types as X | Y
was introduced in 3.10. I assume those changes needs to be reverted if we would target 3.9.
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.
Ah, I thought they were introduced in 3.9. good to know.
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.
That'd be a concern, but meds has requires-python = ">=3.10"
No description provided.