Skip to content

Commit

Permalink
Bump some deps
Browse files Browse the repository at this point in the history
  • Loading branch information
zhukovgreen committed Apr 29, 2021
1 parent 11fa2ea commit 02a5f65
Show file tree
Hide file tree
Showing 2 changed files with 274 additions and 212 deletions.
19 changes: 9 additions & 10 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
minimum_pre_commit_version: "2.3.0"
repos:
- repo: "https://github.com/psf/black"
rev: "20.8b1"
rev: "21.4b2"
hooks:
- id: "black"
name: "Format code (black)"
language_version: "python3"
exclude: ^docs/.*$

- repo: "https://github.com/asottile/blacken-docs"
rev: "v1.8.0"
rev: "v1.10.0"
hooks:
- id: "blacken-docs"
name: "Format docs (blacken-docs)"
Expand All @@ -19,14 +19,14 @@ repos:
- "black==20.8b1"

- repo: "https://github.com/timothycrosley/isort"
rev: 5.6.4
rev: 5.8.0
hooks:
- id: isort
language_version: "python3"
additional_dependencies: [toml]

- repo: "https://github.com/pre-commit/pre-commit-hooks"
rev: "v3.2.0"
rev: "v3.4.0"
hooks:
- id: "end-of-file-fixer"
- id: "trailing-whitespace"
Expand All @@ -36,32 +36,31 @@ repos:
- id: "check-merge-conflict"

- repo: https://github.com/jorisroovers/gitlint
rev: v0.13.1
rev: v0.15.1
hooks:
- id: gitlint

- repo: https://github.com/PyCQA/bandit
rev: "1.6.2"
rev: "1.7.0"
hooks:
- id: bandit
language_version: "python3"
exclude: ^tests/.*$

- repo: https://github.com/econchick/interrogate
rev: 1.3.1 # or master if you're bold
rev: 1.3.2 # or master if you're bold
hooks:
- id: interrogate
language_version: "python3"
args: [tests]

- repo: "https://gitlab.com/PyCQA/flake8"
rev: 3.8.4
rev: 3.9.1
hooks:
- id: "flake8"
name: "Lint code (flake8)"
language_version: "python3"
additional_dependencies:
- "flake8==3.7.9"
- "flake8-broken-line==0.2.0"
- "flake8-bugbear==20.1.4"
- "flake8-builtins==1.5.2"
Expand All @@ -76,7 +75,7 @@ repos:
- "pep8-naming==0.10.0"

- repo: "https://github.com/pre-commit/mirrors-mypy"
rev: "v0.790"
rev: "v0.812"
hooks:
- id: "mypy"
name: "Lint code (mypy)"
Expand Down

0 comments on commit 02a5f65

Please sign in to comment.