From ceddd22e274b18ee7c0e11e972eadfb6dc840c7d Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 11 Nov 2025 21:34:30 -0300 Subject: [PATCH] Add minimum-pre-commit-version In https://github.com/pytest-dev/pytest/pull/13939 we are using the new `language: unsupported` setting, which was introduced in pre-commit 4.4.0. Configure minimum pre-commit version to ensure the installed pre-commit supports it (https://github.com/pytest-dev/pytest/pull/13938#issuecomment-3519164822). --- .pre-commit-config.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f1a1636b2d6..efbe635b401 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,3 +1,4 @@ +minimum_pre_commit_version: "4.4.0" repos: - repo: https://github.com/astral-sh/ruff-pre-commit rev: "v0.14.4"