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
This commit is contained in:
Anastas Stoyanovsky 2025-12-16 13:47:57 -05:00 committed by GitHub
parent 66f3cf4002
commit 401d3b8ce6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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: 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 ```bash
uv pip install pre-commit==4.3.0 uv pip install 'pre-commit>=4.4.0'
uv run pre-commit install uv run pre-commit install
``` ```