Skip to content

Commit

Permalink
fix: Bump pre-commit hooks to fix isort issue
Browse files Browse the repository at this point in the history
CI is broken on main due to this isort issue, the root cause lies in an
underlying incompatible change in Poetry.

PyCQA/isort#2083
  • Loading branch information
aiven-anton committed Jan 30, 2023
1 parent 765ccd9 commit 5a02544
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
minimum_pre_commit_version: 2.9.2
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
rev: v4.4.0
hooks:
- id: trailing-whitespace
exclude: ^vendor/|^tests/.*/fixtures/.*|^tests/integration/test_data/.*
Expand All @@ -11,18 +11,18 @@ repos:
- id: debug-statements

- repo: https://github.com/PyCQA/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
name: isort (python)

- repo: https://github.com/psf/black
rev: 22.3.0
rev: 22.12.0
hooks:
- id: black

- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
rev: 6.0.0
hooks:
- id: flake8

Expand Down

0 comments on commit 5a02544

Please sign in to comment.