From 95e04c4d82917a4020c29c8ae61814ca664f8571 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Mon, 19 Feb 2024 11:35:39 -0800 Subject: [PATCH] ci: Update .pre-commit-config.yaml Update .pre-commit-config.yaml to use the latest versions of black, flake8, etc. --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0b2318ff..4874306d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v2.3.0 + rev: v4.5.0 hooks: - id: check-yaml - id: check-toml @@ -8,16 +8,16 @@ repos: exclude: ".*.json" - id: trailing-whitespace - repo: https://github.com/psf/black - rev: 22.10.0 + rev: 24.2.0 hooks: - id: black - repo: https://github.com/PyCQA/flake8 - rev: 6.0.0 + rev: 7.0.0 hooks: - id: flake8 exclude: ^(.tox|env|build|dist|help|qt/dg_rc.py|pkg).* - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook - rev: v9.3.0 + rev: v9.11.0 hooks: - id: commitlint stages: [commit-msg]