infra: community max python 3.11 for resolution (#24728)

This commit is contained in:
Erick Friis
2024-07-26 14:10:14 -07:00
committed by GitHub
parent 174e7d2ab2
commit 3c3d3e9579

View File

@@ -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},