summaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2022-02-17 16:53:43 -0800
committerDavid Lord <davidism@gmail.com>2022-02-17 16:53:43 -0800
commitd5edb25f550b099fca0d673a779c9cf0e2a43098 (patch)
tree9ff3b9422a5bdb005c71bab206dff68dcf9e2e18 /.pre-commit-config.yaml
parentc167ddf685501c10ecc42c43fb7604f11e5f1532 (diff)
downloadjinja2-d5edb25f550b099fca0d673a779c9cf0e2a43098.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 b4a7c7d..559156d 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