From 959f0527502efee1b9bdb9e22a42a25ea055a2d8 Mon Sep 17 00:00:00 2001 From: Willem Jiang Date: Fri, 24 Jul 2026 08:46:55 +0800 Subject: [PATCH] fix(ci): lock the ruff version from the backend Makefile (#4435) --- backend/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/Makefile b/backend/Makefile index f903f9e5b..8f0e891ea 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -14,11 +14,11 @@ test-blocking-io: PYTHONPATH=. PYTHONIOENCODING=utf-8 PYTHONUTF8=1 uv run pytest tests/blocking_io -q --tb=short lint: - uvx ruff check . - uvx ruff format --check . + uv run ruff check . + uv run ruff format --check . format: - uvx ruff check . --fix && uvx ruff format . + uv run ruff check . --fix && uv run ruff format . detect-blocking-io: @PYTHONPATH=. PYTHONIOENCODING=utf-8 PYTHONUTF8=1 uv run python ../scripts/detect_blocking_io_static.py --output ../.deer-flow/blocking-io-findings.json