-
Notifications
You must be signed in to change notification settings - Fork 6
Fix Python 3.13 CICD issues by updating packages #283
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
Conversation
| frozendict = "^2.3.2" | ||
| pillow = ">=9.0.0" # TODO: We may want to mark pillow (and numpy) as extra (https://python-poetry.org/docs/master/pyproject#extras) | ||
| pydantic = ">=2.0,<3.0.0" | ||
| pillow = ">=11.0.0" # TODO: We may want to mark pillow (and numpy) as extra (https://python-poetry.org/docs/master/pyproject#extras) |
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.
pillow 11 is the first version that has support for python 3.13
| pillow = "^9.0.0" | ||
| pydantic = "^2.0" | ||
| python = ">=3.9.0,<4.0" | ||
| Sphinx = {version = "^7.2.6", python = ">=3.9,<4.0"} |
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.
these are all no-ops but use poetry formatting in the standard way
brandon-wada
left a comment
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!
Pillow 11 is the first version that supports Python 3.13, using pillow 9 broke test-comprehensive for the Python 3.13 part of the matrix.
Confirmation it works: https://github.com/groundlight/python-sdk/actions/runs/12150031217/job/33882229025?pr=283