From 123693ccbf97df37f928a8ec3e39b85d5e719a7c Mon Sep 17 00:00:00 2001 From: Aviv Keller <38299977+RedYetiDev@users.noreply.github.com> Date: Tue, 13 Aug 2024 13:21:59 -0400 Subject: [PATCH] build: update `ruff` to `0.5.2` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/53909 Reviewed-By: Michaƫl Zasso Reviewed-By: Moshe Atlow Reviewed-By: Luigi Pinca --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 79fccce98f5040..330cb1df31cc71 100644 --- a/Makefile +++ b/Makefile @@ -1529,8 +1529,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)")