From 401d3b8ce644baaa19baa364b6fbeaeed627bc13 Mon Sep 17 00:00:00 2001 From: Anastas Stoyanovsky Date: Tue, 16 Dec 2025 13:47:57 -0500 Subject: [PATCH] docs: Update pre-commit version in CONTRIBUTING.md (#4399) # What does this PR do? Update pre-commit installation command to use version 4.4.0 or greater, as is done in CI. ## Test Plan n/a --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ba6c2eaf2..cd51d2399 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -45,7 +45,7 @@ uv run --env-file .env -- pytest -v tests/integration/inference/test_text_infere We use [pre-commit](https://pre-commit.com/) to run linting and formatting checks on your code. You can install the pre-commit hooks by running: ```bash -uv pip install pre-commit==4.3.0 +uv pip install 'pre-commit>=4.4.0' uv run pre-commit install ```