-
Notifications
You must be signed in to change notification settings - Fork 76
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
[Feature Request] Drop 3.8 support, confirm 3.13 support #672
Comments
I happened to discover by accident that grpcio does not yet support Python 3.13 because it apparently depends on some C APIs that have been removed. So it seems unlikely we'd be able to support it without updating grpcio (if a fix is available; it may already be) |
|
Tracebacks are currently broken in Python 3.13. The original traceback for an exception happening in a workflow is clobbered and instead the following error is shown:
The error message occurs from an attempt to access linecache inside the original exception, leading to this:
|
Describe the solution you'd like
See #398 (PR #422) where we did this for 3.7/3.12. Can see the several things that were done there and similar should be done here.
The text was updated successfully, but these errors were encountered: