From 12d7cc5cd3da00094c5801aff4c77550e2a59528 Mon Sep 17 00:00:00 2001 From: Nikita Shulga <2453524+malfet@users.noreply.github.com> Date: Fri, 10 Oct 2025 11:09:13 -0700 Subject: [PATCH] [BE] Set commit hooks to 3.10 --- scripts/setup_hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup_hooks.py b/scripts/setup_hooks.py index e8effe7f8232..9c885556d4bb 100644 --- a/scripts/setup_hooks.py +++ b/scripts/setup_hooks.py @@ -89,7 +89,7 @@ if venv_dir.exists(): print("Removing existing hook venv...") shutil.rmtree(venv_dir) -run(["uv", "venv", str(venv_dir), "--python", "3.9"]) +run(["uv", "venv", str(venv_dir), "--python", "3.10"]) # Install lintrunner in the isolated environment print("Installing lintrunner in isolated environment...")