Skip to content

Commit

Permalink
Update pre-commit config and versions
Browse files Browse the repository at this point in the history
remove python version spec
  • Loading branch information
mshriver committed May 2, 2023
1 parent c46003a commit d05d4e6
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,32 @@ ci:
autofix_prs: false
repos:
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.0.1
rev: v3.9.0
hooks:
- id: reorder-python-imports
language_version: python3
args:
- --application-directories=.:wrapanapi
- repo: https://github.com/psf/black
rev: 22.3.0
rev: 23.3.0
hooks:
- id: black
args: [--safe, --quiet, --line-length, "100"]
language_version: python3
require_serial: true
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
rev: 6.0.0
hooks:
- id: flake8
language_version: python3
args:
- --max-line-length=100
- --ignore=W503,E203
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
rev: v4.4.0
hooks:
- id: trailing-whitespace
language_version: python3
- id: end-of-file-fixer
language_version: python3
- id: debug-statements
language_version: python3
- repo: https://github.com/asottile/pyupgrade
rev: v2.32.0
rev: v3.3.2
hooks:
- id: pyupgrade
language_version: python3
args: [--py3-plus, --py38-plus]

0 comments on commit d05d4e6

Please sign in to comment.