-
Notifications
You must be signed in to change notification settings - Fork 10.7k
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
Python 3.13t Support #38762
Comments
Hi @btakita , thanks for bringing this up. gRPC Python currently uses GIL internally, and we don't yet support no-GIL mode. This is currently in our backlog, and we do not have the bandwidth to pick this up yet. However, we would like to welcome any external contributions for the same. |
We eagerly request the free-threading/no-GIL Python support ( |
Seems the error comes from the Cython layer? These are the official documents, just to share with those who aren't familiar with the situation: |
Definitely of interest! For Cython, the latest release (3.0.12, or the 3.0.x series) does not support free-threading. Cython's master branch does though, and is successfully used by quite a few projects now. There are also nightly wheels for Cython that support free-threading at https://anaconda.org/scientific-python-nightly-wheels/cython (and that is documented at For building wheels with |
Just a drive-by comment that, yes, Cython support for no-GIL mode is a necessary but not sufficient condition for gRPC Python supporting no-gil mode. It's likely that there are quite a few places in the codebase that have been uninentionally depending on the GIL for synchronization, so we'll need to do an audit/close reading of the codebase and iron out any lack of synchronization that's present in the current codebase. |
Hello @btakita , I'm facing similar challenges trying to get grpcio working in a nogil environment. I was wondering if you've had any success installing grpcio in a Python 3.13t environment? Or perhaps discovered any workable interim solutions? |
@bhlt1998 I havn't tried since. Just exploring what it would take to do the upgrade. I've been making tracking issues with various dependencies. |
An interim solution would be C++? |
What version of gRPC and what language are you using?
Python 3.13.2t
grpcio==1.70.0
What operating system (Linux, Windows,...) and version?
Linux 6.13.2-zen1-1-zen x86_64 unknown
What runtime / compiler are you using (e.g. python version or version of gcc)
Python 3.13.2t
What did you do?
In a virtual env environment, attempt a pip install.
What did you expect to see?
A successful install.
What did you see instead?
install-grpcio-err.txt
Anything else we should know about your project / environment?
Using Virtual Env & pip install.
The text was updated successfully, but these errors were encountered: