-
Notifications
You must be signed in to change notification settings - Fork 0
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 python version matrix #4
Conversation
separating out a `TODO.md` ahead of breaking into issues, plus renaming the Go server to `coggo-server`.
@@ -4,6 +4,13 @@ version = "0.1.0" | |||
description = "Add your description here" | |||
readme = "README.md" | |||
requires-python = ">=3.9" | |||
classifiers = [ | |||
"Programming Language :: Python :: 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.
IIRC I set it to >=3.9
because generics like list[str]
don't work in 3.8 which requires typing.List[str]
instead.
We probably want to split out tests that don't work across all versions if we decide to cover 3.8?
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 happy to stick to >=3.9
for now 👍🏼 ; cross that bridge when we run into it...
No description provided.