From f869a19ba6db6c008b5ee34090259956997fce48 Mon Sep 17 00:00:00 2001 From: RedYetiDev <38299977+RedYetiDev@users.noreply.github.com> Date: Wed, 17 Jul 2024 15:43:07 -0400 Subject: [PATCH] build: update `ruff` to `0.5.2` --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ab62b2ca7a86bb..bc2a2bc0401a52 100644 --- a/Makefile +++ b/Makefile @@ -1527,8 +1527,8 @@ cpplint: lint-cpp # Try with '--system' if it fails without; the system may have set '--user' lint-py-build: $(info Pip installing ruff on $(shell $(PYTHON) --version)...) - $(PYTHON) -m pip install --upgrade --target tools/pip/site-packages ruff==0.4.5 || \ - $(PYTHON) -m pip install --upgrade --system --target tools/pip/site-packages ruff==0.4.5 + $(PYTHON) -m pip install --upgrade --target tools/pip/site-packages ruff==0.5.2 || \ + $(PYTHON) -m pip install --upgrade --system --target tools/pip/site-packages ruff==0.5.2 .PHONY: lint-py ifneq ("","$(wildcard tools/pip/site-packages/ruff)")