Skip to content

Commit 644aae9

Browse files
pvitalGSVarsha
authored andcommitted
fix: remove grpcio from Python 3.14 tests.
The package grpcio started failing to build on Python 3.14.0a5. Signed-off-by: Paulo Vital <paulo.vital@ibm.com>
1 parent 088148a commit 644aae9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

tests/conftest.py

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@
5353
collect_ignore_glob.append("*test_fastapi*")
5454
# aiohttp-server tests failing due to deprecated methods used
5555
collect_ignore_glob.append("*test_aiohttp_server*")
56+
# grpcio is failing to build on 3.14.0a5
57+
collect_ignore_glob.append("*test_grpc*")
5658

5759

5860
@pytest.fixture(scope="session")

tests/requirements-pre314.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Django>=4.2.16
1212
flask>=2.3.2
1313
# gevent is taking more than 20min to build on 3.14
1414
# gevent>=1.4.0
15-
grpcio>=1.14.1
15+
# grpcio is failing to build on 3.14.0a5
16+
# grpcio>=1.14.1
1617
google-cloud-pubsub>=2.0.0
1718
google-cloud-storage>=1.24.0
1819
legacy-cgi>=2.6.1

0 commit comments

Comments
 (0)