Skip to content

Commit

Permalink
Target Python >= 3.7 in pre-commit hooks (#830)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkniewallner committed Feb 27, 2022
1 parent 09a6ace commit a65ae17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Expand Up @@ -11,17 +11,17 @@ repos:
rev: v2.6.0
hooks:
- id: reorder-python-imports
args: [--application-directories, '.:src', --py36-plus]
args: [--application-directories, '.:src', --py37-plus]
- repo: https://github.com/psf/black
rev: 21.10b0
hooks:
- id: black
args: [--line-length=79, --target-version=py36]
args: [--line-length=79, --target-version=py37]
- repo: https://github.com/asottile/pyupgrade
rev: v2.29.0
hooks:
- id: pyupgrade
args: [--py36-plus]
args: [--py37-plus]
- repo: https://github.com/jorisroovers/gitlint
rev: v0.16.0
hooks:
Expand Down

0 comments on commit a65ae17

Please sign in to comment.