Skip to content

Commit

Permalink
fix: remove grpcio from Python 3.14 tests.
Browse files Browse the repository at this point in the history
The package grpcio started failing to build on Python 3.14.0a5.

Signed-off-by: Paulo Vital <[email protected]>
  • Loading branch information
pvital committed Feb 27, 2025
1 parent 6e678a6 commit 408ac09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
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

0 comments on commit 408ac09

Please sign in to comment.