From cd28b8272825b28aecec525bec8c961cff0acc79 Mon Sep 17 00:00:00 2001 From: Koby Meir Date: Thu, 6 Jul 2023 12:54:58 +0300 Subject: [PATCH] Ignore any Python update in ApiModules, until we can proprtly determine their desired version. (#27953) --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 047f7c89ec76..a6fb658f17a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -457,6 +457,8 @@ src = [ [tool.ruff.per-file-ignores] "**/*_test.py" = [] +# Ignore any Python update in ApiModules, until we can proprtly determine their desired version. +"**/*ApiModule.py" = [ "UP" ] [tool.mypy] python_version = "3.10"