From 6b8d1ef5c87c24ab3ab52f49ee217445aa9ece41 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 17:10:35 +0000 Subject: [PATCH] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.3.5 → v0.7.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.3.5...v0.7.2) - [github.com/PyCQA/bandit: 1.7.8 → 1.7.10](https://github.com/PyCQA/bandit/compare/1.7.8...1.7.10) - [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v5.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.6.0...v5.0.0) --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 031c39c9..7c207e0c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,19 +5,19 @@ exclude: tests/integration/data repos: # Normalise all Python code. (Black + isort + pyupgrade + autoflake) - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.3.5 + rev: v0.7.2 hooks: - id: ruff args: [--fix, --show-fixes, --output-format, grouped] - id: ruff-format # Common Python security checks. (this is complementary to dlint in flake8) - repo: https://github.com/PyCQA/bandit - rev: '1.7.8' + rev: '1.7.10' hooks: - id: bandit exclude: '^tests/|_version.py|versioneer.py' - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: check-added-large-files # We don't want huge files. (Cut down test data!) args: ['--maxkb=3000']