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

fix: grpcio error when building in Python 3.14 #703

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@
collect_ignore_glob.append("*test_fastapi*")
# aiohttp-server tests failing due to deprecated methods used
collect_ignore_glob.append("*test_aiohttp_server*")
# grpcio is failing to build on 3.14.0a5
collect_ignore_glob.append("*test_grpc*")


@pytest.fixture(scope="session")
Expand Down
3 changes: 2 additions & 1 deletion tests/requirements-pre314.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Django>=4.2.16
flask>=2.3.2
# gevent is taking more than 20min to build on 3.14
# gevent>=1.4.0
grpcio>=1.14.1
# grpcio is failing to build on 3.14.0a5
# grpcio>=1.14.1
google-cloud-pubsub>=2.0.0
google-cloud-storage>=1.24.0
legacy-cgi>=2.6.1
Expand Down
Loading