diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ab3bcbe30..f222ed62e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/psf/black - rev: 22.6.0 + rev: 22.10.0 hooks: - id: black args: @@ -9,26 +9,26 @@ repos: - --target-version - py310 files: ^((supervisor|tests)/.+)?[^/]+\.py$ - - repo: https://gitlab.com/pycqa/flake8 - rev: 3.8.3 + - repo: https://github.com/PyCQA/flake8 + rev: 5.0.4 hooks: - id: flake8 additional_dependencies: - - flake8-docstrings==1.5.0 - - pydocstyle==5.0.2 + - flake8-docstrings==1.6.0 + - pydocstyle==6.1.1 files: ^(supervisor|script|tests)/.+\.py$ - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v3.1.0 + rev: v4.3.0 hooks: - id: check-executables-have-shebangs stages: [manual] - id: check-json - repo: https://github.com/PyCQA/isort - rev: 5.9.3 + rev: 5.10.1 hooks: - id: isort - repo: https://github.com/asottile/pyupgrade - rev: v3.2.0 + rev: v3.2.2 hooks: - id: pyupgrade args: [--py310-plus]