Skip to content

Commit

Permalink
Merge pull request #862 from altheaden/update-pre-commit-deps
Browse files Browse the repository at this point in the history
Update pre-commit dependencies
  • Loading branch information
xylar authored Oct 1, 2024
2 parents 2e06f2e + 50074f4 commit 2aa611e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,28 @@ fail_fast: true

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer

# Can run individually with `pre-commit run isort --all-files`
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort

# Can run individually with `pre-commit run flake8 --all-files`
# Need to use flake8 GitHub mirror due to CentOS git issue with GitLab
# https://github.com/pre-commit/pre-commit/issues/1206
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 7.1.1
hooks:
- id: flake8
args: ["--config=setup.cfg"]
additional_dependencies: [flake8-isort]

# https://pre-commit.ci/#configuration
ci:
autofix_prs: false
autoupdate_schedule: monthly

0 comments on commit 2aa611e

Please sign in to comment.