From 957b05b8d570a2c4192ce8e4d894608e5d2e6a6b Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Tue, 30 Jul 2024 11:43:10 -0700 Subject: [PATCH] infra: py3.11 for community integration test compiling (#24834) e.g. https://github.com/langchain-ai/langchain/actions/runs/10167754785/job/28120861343?pr=24833 --- .github/scripts/check_diff.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/scripts/check_diff.py b/.github/scripts/check_diff.py index 73662ecf734..3129e946aab 100644 --- a/.github/scripts/check_diff.py +++ b/.github/scripts/check_diff.py @@ -100,6 +100,10 @@ def _get_configs_for_single_dir(job: str, dir_: str) -> List[Dict[str, str]]: # even in uv max_python = "3.11" + if dir_ == "libs/community" and job == "compile-integration-tests": + # community integration deps are slow in 3.12 + max_python = "3.11" + return [ {"working-directory": dir_, "python-version": min_python}, {"working-directory": dir_, "python-version": max_python},