From 9b4b156cb5ec067ae8f6eca6d090012ac4bfacc6 Mon Sep 17 00:00:00 2001 From: Dmitry Meyer Date: Thu, 13 Aug 2026 11:18:51 +0000 Subject: [PATCH] Ignore google package warning about unsupported Python version in tests > You are using a Python version (3.10.20) which Google will stop > supporting in new releases of google.cloud.appengine_logging_v1 > once it reaches its end of life (2026-10-04). Please upgrade to > the latest Python version, or at least Python 3.11, to continue > receiving updates for google.cloud.appengine_logging_v1 past > that date. --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 99375463e..42803869c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -146,6 +146,8 @@ filterwarnings = [ # Fail on any use of a pydantic v1 shim (`.dict()`, `parse_obj_as`, class-based `Config`, ...) # so they cannot creep back after the v2 migration. "error::pydantic.PydanticDeprecatedSince20", + # Remove or change to 3.11 once support for Python 3.10 is dropped. + "ignore:You are using a Python version \\(3.10:FutureWarning:^google\\.", ] [tool.tox]