From 0197fddff3c736efa7e358f69b2f4dd931337478 Mon Sep 17 00:00:00 2001 From: Yagiz Nizipli Date: Mon, 27 May 2024 20:59:29 -0400 Subject: [PATCH] build: update ruff to v0.4.5 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c3169de5afaa62..80678c2ee2c862 100644 --- a/Makefile +++ b/Makefile @@ -1524,8 +1524,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.3.4 || \ - $(PYTHON) -m pip install --upgrade --system --target tools/pip/site-packages ruff==0.3.4 + $(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 .PHONY: lint-py ifneq ("","$(wildcard tools/pip/site-packages/ruff)")