-
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
Upgrade click
dependency
#34
Conversation
@@ -12,13 +12,13 @@ authors = [ | |||
license = "MIT" | |||
|
|||
[tool.poetry.dependencies] | |||
python = "^3.6" | |||
python = ">=3.7,<3.12" |
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.
Updating click drops py3.6 support. The project also doesn't work with py3.12 as per test run as-is, hence the updated version range. We can always revisit as necessary.
{ "os": "ubuntu-latest", "python": "3.8" }, | ||
{ "os": "ubuntu-latest", "python": "3.9" }, | ||
{ "os": "ubuntu-latest", "python": "3.10" }, | ||
{ "os": "ubuntu-latest", "python": "3.11" }, |
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.
testing the full range of versions supported
click
dependency
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.
lgtm
Updates
click
dependency.celery>=5.3
to continue using this project, as Celery>=5.3 requiresclick>=8.1.2
/ causing an incompatible version matchup in Poetrypytest
as well