Skip to content

Commit 84e9569

Browse files
authored
chore(pre-commit): update deps (#160)
* chore(pre-commit): update deps * renovate support for pre-commit
1 parent fa52e56 commit 84e9569

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

.pre-commit-config.yaml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,41 @@ exclude: "docs/"
22

33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.3.0
5+
rev: v4.4.0
66
hooks:
77
- id: check-yaml
88
- id: check-toml
99
- id: debug-statements
1010
- id: end-of-file-fixer
1111
- id: trailing-whitespace
1212
- repo: https://github.com/PyCQA/isort
13-
rev: 5.10.1
13+
rev: 5.12.0
1414
hooks:
1515
- id: isort
1616
args: ["--profile", "black"]
1717
- repo: https://github.com/psf/black
18-
rev: 22.6.0
18+
rev: 23.1.0
1919
hooks:
2020
- id: black
2121
language_version: python3
2222
- repo: https://github.com/asottile/pyupgrade
23-
rev: v2.37.3
23+
rev: v3.3.1
2424
hooks:
2525
- id: pyupgrade
2626
args: [--py37-plus]
27-
- repo: https://gitlab.com/pycqa/flake8
28-
rev: 3.9.2
27+
- repo: https://github.com/pycqa/flake8
28+
rev: 6.0.0
2929
hooks:
3030
- id: flake8
3131
- repo: https://github.com/python-poetry/poetry
32-
rev: 1.3.2 # add version here
32+
rev: 1.4.0 # add version here
3333
hooks:
3434
- id: poetry-check
35-
- id: poetry-lock
35+
files: pyproject.toml
3636
- id: poetry-export
37+
files: pyproject.toml
38+
- id: poetry-lock
39+
files: pyproject.toml
3740
- repo: local
3841
hooks:
3942
- id: print_statement
@@ -42,12 +45,12 @@ repos:
4245
entry: "print"
4346
language: pygrep
4447
- repo: https://github.com/dhatim/python-license-check
45-
rev: 0.7.2
48+
rev: 0.8.3
4649
hooks:
4750
- id: liccheck
4851
language: system
49-
args: ["-r./requirements.txt", "-lparanoid"]
52+
args: ["--level", "paranoid"]
5053
- repo: https://github.com/pre-commit/pre-commit
51-
rev: v2.20.0
54+
rev: v3.2.0
5255
hooks:
5356
- id: validate_manifest

renovate.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"local>descope/renovate-config"
5-
]
3+
"extends": ["local>descope/renovate-config"],
4+
"pre-commit": {
5+
"enabled": true
6+
}
67
}

0 commit comments

Comments
 (0)