Skip to content
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

Open
btakita opened this issue Feb 17, 2025 · 8 comments
Open

Python 3.13t Support #38762

btakita opened this issue Feb 17, 2025 · 8 comments
Assignees
Labels
disposition/help wanted Maintainers do not have enough resources to allocate to this at the moment. Help is appreciated! disposition/never stale kind/enhancement lang/Python priority/P2

Comments

@btakita
Copy link

btakita commented Feb 17, 2025

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.

@sreenithi
Copy link
Contributor

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.
And for any users who are also interested in this support, please continue to add your comments, so that we can re-assess priority based on community interest.

@sreenithi sreenithi added disposition/help wanted Maintainers do not have enough resources to allocate to this at the moment. Help is appreciated! disposition/never stale kind/enhancement and removed kind/bug labels Feb 19, 2025
@rinarakaki
Copy link

We eagerly request the free-threading/no-GIL Python support (cp313t wheel)!

@rinarakaki
Copy link

rinarakaki commented Feb 22, 2025

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:

@rgommers
Copy link

rgommers commented Mar 5, 2025

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
https://py-free-threading.github.io/debugging/#cython-compilation-errors-unknown-type-name-__pyx_vectorcallfunc).

For building wheels with cibuildwheel in CI, numpy and other projects use this to pull in a Cython nightly specifically for cp313t wheels:
https://github.com/numpy/numpy/blob/01e98f1098a8a40df80bda98a3e8ea714b979010/tools/wheels/cibw_before_build.sh#L56-L63

@gnossen
Copy link
Contributor

gnossen commented Mar 5, 2025

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.

@bhlt1998
Copy link

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?

@btakita
Copy link
Author

btakita commented Mar 25, 2025

@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.

@btakita
Copy link
Author

btakita commented Mar 25, 2025

An interim solution would be C++?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
disposition/help wanted Maintainers do not have enough resources to allocate to this at the moment. Help is appreciated! disposition/never stale kind/enhancement lang/Python priority/P2
Projects
None yet
Development

No branches or pull requests

8 participants