summaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2022-02-17 17:55:33 -0800
committerDavid Lord <davidism@gmail.com>2022-02-17 17:55:33 -0800
commit53fae9c1269aeb816a0bacfcdeba5b8a90b6270e (patch)
treeebf3870d0964e43e14f0889456195fcee0a57fd8 /.pre-commit-config.yaml
parent1c588834cfd1083ddaf55c7d97bd440eabd94b6f (diff)
downloadclick-53fae9c1269aeb816a0bacfcdeba5b8a90b6270e.tar.gz
update pre-commit hooks
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r--.pre-commit-config.yaml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 609fdb9..f098f88 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -8,12 +8,13 @@ repos:
- id: pyupgrade
args: ["--py36-plus"]
- repo: https://github.com/asottile/reorder_python_imports
- rev: v2.6.0
+ rev: v2.7.1
hooks:
- id: reorder-python-imports
args: ["--application-directories", "src"]
+ additional_dependencies: ["setuptools>60.9"]
- repo: https://github.com/psf/black
- rev: 21.12b0
+ rev: 22.1.0
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8