Skip to content

Commit

Permalink
ci: pre-commit autoupdate
Browse files Browse the repository at this point in the history
updates:
- [github.com/adamchainz/django-upgrade: 1.14.0 → 1.15.0](adamchainz/django-upgrade@1.14.0...1.15.0)
- [github.com/asottile/pyupgrade: v3.8.0 → v3.14.0](asottile/pyupgrade@v3.8.0...v3.14.0)
- [github.com/PyCQA/autoflake: v2.2.0 → v2.2.1](PyCQA/autoflake@v2.2.0...v2.2.1)
- [github.com/psf/black: 23.3.0 → 23.9.1](psf/black@23.3.0...23.9.1)
- [github.com/PyCQA/flake8: 6.0.0 → 6.1.0](PyCQA/flake8@6.0.0...6.1.0)
  • Loading branch information
pre-commit-ci[bot] authored Oct 3, 2023
1 parent 0632a98 commit e0477fc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ fail_fast: true

repos:
- repo: https://github.com/adamchainz/django-upgrade
rev: '1.14.0'
rev: '1.15.0'
hooks:
- id: django-upgrade
args: [--target-version, "3.2"]
- repo: https://github.com/asottile/pyupgrade
rev: v3.8.0
rev: v3.14.0
hooks:
- id: pyupgrade
args: ["--py310-plus"]
- repo: https://github.com/PyCQA/autoflake
rev: v2.2.0
rev: v2.2.1
hooks:
- id: autoflake
entry: bash -c 'autoflake "$@"; git add -u;' --
Expand All @@ -42,12 +42,12 @@ repos:
name: isort
entry: bash -c 'isort "$@"; git add -u;' --
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 23.9.1
hooks:
- id: black
entry: bash -c 'black "$@"; git add -u;' --
language_version: python3.10
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 6.1.0
hooks:
- id: flake8

0 comments on commit e0477fc

Please sign in to comment.