Uh oh!
There was an error while loading. Please reload this page.
feat: add support for python 3.13 - #696
Conversation
|
| "google-auth", | ||
| "googleapis-common-protos", | ||
| "grpcio", | ||
| # Exclude grpcio!=1.67.0rc1 which does not support python 3.13 |
There was a problem hiding this comment.
Do we need to disable the rc version? My assumption is that the latest stable version is installed by default.
There was a problem hiding this comment.
Without this change, the pre-release test fails (See https://github.com/googleapis/python-api-core/actions/runs/11259852849/job/31309789274)
Do we need to disable the rc version? My assumption is that the latest stable version is installed by default.
We don't get the stable version in the prerelease_deps nox session. We get the latest pre-release which is https://pypi.org/project/grpcio/1.67.0rc1/. We're not disabling all rc versions, just 1.67.0rc1 which doesn't support python 3.13
Uh oh!
There was an error while loading. Please reload this page.
Co-authored-by: ohmayr <omairnaveed@ymail.com>
Fixes#695 🦕