summaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2022-04-01 12:36:19 -0700
committerDavid Lord <davidism@gmail.com>2022-04-01 12:36:19 -0700
commit5c36b4d38494723a7dcd288fb01382545ecb5196 (patch)
treea90198ae389fbbf6d04530768cc5c20aa80d2833 /.pre-commit-config.yaml
parent030f53cf677ee1de534359c535d465eed0ec1d99 (diff)
downloadclick-5c36b4d38494723a7dcd288fb01382545ecb5196.tar.gz
update requirements
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r--.pre-commit-config.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 3b68833..8b4b745 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -3,18 +3,18 @@ ci:
autoupdate_schedule: monthly
repos:
- repo: https://github.com/asottile/pyupgrade
- rev: v2.31.0
+ rev: v2.31.1
hooks:
- id: pyupgrade
args: ["--py37-plus"]
- repo: https://github.com/asottile/reorder_python_imports
- rev: v2.7.1
+ rev: v3.0.1
hooks:
- id: reorder-python-imports
args: ["--application-directories", "src"]
additional_dependencies: ["setuptools>60.9"]
- repo: https://github.com/psf/black
- rev: 22.1.0
+ rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8