From 644aae9f7bac25f497a5caf7576f58cac080c47a Mon Sep 17 00:00:00 2001 From: Paulo Vital Date: Thu, 27 Feb 2025 11:50:07 +0100 Subject: [PATCH] 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 --- tests/conftest.py | 2 ++ tests/requirements-pre314.txt | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 775a6641..e89df8e2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -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") diff --git a/tests/requirements-pre314.txt b/tests/requirements-pre314.txt index c57055b7..284e82f1 100644 --- a/tests/requirements-pre314.txt +++ b/tests/requirements-pre314.txt @@ -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