RyanSkraba opened a new pull request, #3918: URL: https://github.com/apache/avro/pull/3918
## What is the purpose of the change The current command **`uvx ruff check .`** is shorthand for `uv tool run ruff check .` which runs standalone CLI commands (ignoring any pinned `uv.lock` files). The latest version of `ruff` in PyPI is used (at this time 0.16.1). This PR changes the tools to **`uv run ruff check .`**, which uses the pinned version of ruff in `uv.lock` which is 0.15.1. Unfortunately, `[email protected]` => `[email protected]` causes many lint errors, and we'll have to fix those before bumping. ## Verifying this change *(Please pick one of the following options)* This change is a code cleanup without any test coverage. It can be verified by running the `./build.sh clean test` (and hopefully the GitHub Actions that no longer fail on `main`). ## Documentation - Does this pull request introduce a new feature? **no** - If yes, how is the feature documented? **not applicable** -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
