Skip to content

Commit 7786d7c

Browse files
Trottdanielleadams
authored andcommitted
tools: pin ruff version number
New versions have new rules and end up breaking builds unexpectedly. PR-URL: #48505 Backport-PR-URL: #48753 Reviewed-By: Juan José Arboleda <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Ruy Adorno <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 6f3a8b4 commit 7786d7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1518,8 +1518,8 @@ cpplint: lint-cpp
15181518
# Try with '--system' if it fails without; the system may have set '--user'
15191519
lint-py-build:
15201520
$(info Pip installing ruff on $(shell $(PYTHON) --version)...)
1521-
$(PYTHON) -m pip install --upgrade --target tools/pip/site-packages ruff || \
1522-
$(PYTHON) -m pip install --upgrade --system --target tools/pip/site-packages ruff
1521+
$(PYTHON) -m pip install --upgrade --target tools/pip/site-packages ruff==0.0.272 || \
1522+
$(PYTHON) -m pip install --upgrade --system --target tools/pip/site-packages ruff==0.0.272
15231523

15241524
.PHONY: lint-py
15251525
ifneq ("","$(wildcard tools/pip/site-packages/ruff)")

0 commit comments

Comments
 (0)