From 3c3d3e9579eff4ded2deef6fd475bcaa90041631 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Fri, 26 Jul 2024 14:10:14 -0700 Subject: [PATCH] infra: community max python 3.11 for resolution (#24728) --- .github/scripts/check_diff.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/scripts/check_diff.py b/.github/scripts/check_diff.py index b3ea0e821bc..19e85384235 100644 --- a/.github/scripts/check_diff.py +++ b/.github/scripts/check_diff.py @@ -95,6 +95,11 @@ def _get_configs_for_single_dir(job: str, dir_: str) -> List[Dict[str, str]]: # declare deps in funny way max_python = "3.11" + if dir_ == "libs/community" and job == "extended-tests": + # community extended test resolution in 3.12 is slow + # even in uv + max_python = "3.11" + return [ {"working-directory": dir_, "python-version": min_python}, {"working-directory": dir_, "python-version": max_python},