From e12a3b089cc1545e74010825c58f55a6f3b124d0 Mon Sep 17 00:00:00 2001 From: GitHub Date: Thu, 1 Aug 2024 01:09:01 +0000 Subject: [PATCH] chore: update pre-commit config --- .pre-commit-config.yaml | 8 ++++---- dev-requirements.txt | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index aeeaf42085..b562440781 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -20,20 +20,20 @@ repos: exclude: ^fuzz/generated/ - repo: https://github.com/asottile/pyupgrade - rev: v3.15.2 + rev: v3.17.0 hooks: - id: pyupgrade exclude: ^fuzz/generated/ args: ["--py38-plus"] - repo: https://github.com/pycqa/flake8 - rev: 7.0.0 + rev: 7.1.0 hooks: - id: flake8 exclude: ^fuzz/generated/|bandit\.conf$ - repo: https://github.com/PyCQA/bandit - rev: 1.7.8 + rev: 1.7.9 hooks: - id: bandit exclude: ^fuzz/generated/ @@ -45,7 +45,7 @@ repos: - id: gitlint - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.10.0 + rev: v1.11.1 hooks: - id: mypy additional_dependencies: diff --git a/dev-requirements.txt b/dev-requirements.txt index 25834c70a0..0a265c16ce 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -2,13 +2,13 @@ black==24.4.2 isort; python_version < "3.8" isort==5.13.2; python_version >= "3.8" pre-commit; python_version <= "3.8" -pre-commit==3.7.1; python_version > "3.8" +pre-commit==3.8.0; python_version > "3.8" flake8; python_version < "3.8" -flake8==7.0.0; python_version >= "3.8" -bandit==1.7.8 +flake8==7.1.0; python_version >= "3.8" +bandit==1.7.9 gitlint==v0.19.1 interrogate -mypy==v1.10.0 +mypy==v1.11.1 pytest>=7.2.0 pytest-xdist pytest-cov