From 8f839055fe7938a32a6c3e2e3a453795f9741b35 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 3 Jul 2023 18:18:21 +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/Zac-HD/shed: 0.10.7 → 2023.6.1](https://github.com/Zac-HD/shed/compare/0.10.7...2023.6.1) - [github.com/PyCQA/flake8: 5.0.4 → 6.0.0](https://github.com/PyCQA/flake8/compare/5.0.4...6.0.0) - [github.com/PyCQA/bandit: 1.7.4 → 1.7.5](https://github.com/PyCQA/bandit/compare/1.7.4...1.7.5) - [github.com/pre-commit/pre-commit-hooks: v4.3.0 → v4.4.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.3.0...v4.4.0) --- .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 9e20ea53..63c7e4d6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,12 +5,12 @@ exclude: tests/integration/data repos: # Normalise all Python code. (Black + isort + pyupgrade + autoflake) - repo: https://github.com/Zac-HD/shed - rev: 0.10.7 + rev: 2023.6.1 hooks: - id: shed - repo: https://github.com/PyCQA/flake8 # flake8 version should match .travis.yml - rev: 5.0.4 + rev: 6.0.0 hooks: - id: flake8 additional_dependencies: @@ -24,12 +24,12 @@ repos: - pep8-naming # Follow pep8 naming rules (eg. function names lowercase) # Common Python security checks. (this is complementary to dlint in flake8) - repo: https://github.com/PyCQA/bandit - rev: '1.7.4' + rev: '1.7.5' hooks: - id: bandit exclude: '^tests/|_version.py|versioneer.py' - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v4.4.0 hooks: - id: check-added-large-files # We don't want huge files. (Cut down test data!) args: ['--maxkb=3000']