Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ repos:

# Automatically sort imports with isort
- repo: https://github.com/timothycrosley/isort.git
rev: 5.7.0
rev: 5.8.0
hooks:
- id: isort
additional_dependencies: [toml]

# Automatic source code formatting with Black
- repo: https://github.com/psf/black
rev: 20.8b1
rev: 21.5b1
hooks:
- id: black
args: [--safe, --quiet]

# Enforce style with Flake8
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
rev: 3.9.2
hooks:
- id: flake8
# Exclude docstring checks, ignore E203 (see https://github.com/PyCQA/pycodestyle/issues/373)
Expand All @@ -32,7 +32,7 @@ repos:

# Syntax check with pre-commit out-of-the-box hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
rev: v4.0.1
hooks:
- id: end-of-file-fixer
- id: requirements-txt-fixer
Expand Down