From e19bb1c918b153b2d479a42ac9f266c5fdb2036e Mon Sep 17 00:00:00 2001 From: David Huggins-Daines Date: Thu, 12 Dec 2024 07:54:26 -0500 Subject: [PATCH] fix: use non-deprecated way of invoking ruff --- CHANGELOG.md | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f929c0429..f39cafcf1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ ### Fixes +- **Correct deprecated `ruff` invocation in `make tidy`**. This will future-proof it or avoid surprises if someone happens to upgrade Ruff. + ## 0.16.11 ### Enhancements diff --git a/Makefile b/Makefile index c4ea8fb4f1..0e6cfcd0d5 100644 --- a/Makefile +++ b/Makefile @@ -254,7 +254,7 @@ tidy-shell: .PHONY: tidy-python tidy-python: - ruff . --fix-only || true + ruff check . --fix-only || true autoflake --in-place . black --line-length=100 .