-
Notifications
You must be signed in to change notification settings - Fork 102
[Feature Request] Drop 3.8 support, confirm 3.13 support #672
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
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:
|
Hi, I am still seeing this issue.
Python = 3.13.0 Reverting to Python 3.12 fixed the tracebacks so I could see the actual error. |
Also facing what @cprafullchandra mentioned when hosting our workers for Temporal cloud. I hope this can be resolved soon as we are locked into Python 3.13. currently. |
3.13 support is in the next release (should not be too long now, though no exact timelines) |
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: