Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #110

Merged
merged 2 commits into from
Sep 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
rev: v3.10.1
hooks:
- id: pyupgrade
args: ['--py39-plus']
args: [ '--py39-plus' ]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
Expand All @@ -17,14 +17,15 @@ repos:
- id: check-json
- id: pretty-format-json
args: [ '--autofix', '--no-ensure-ascii', '--no-sort-keys' ]
exclude: .ipynb
- id: check-yaml
args: [ '--allow-multiple-documents' ]
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
- id: rst-inline-touching-normal
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.9.1
hooks:
- id: black
exclude: ^docs/
Expand All @@ -38,23 +39,23 @@ repos:
rev: 5.12.0
hooks:
- id: isort
args: ['--profile=black', '--filter-files', "--add_imports='from __future__ import annotations'"]
args: [ '--profile=black', '--filter-files', "--add_imports='from __future__ import annotations'" ]
exclude: ^docs/
- repo: https://github.com/pycqa/pydocstyle
rev: 6.3.0
hooks:
- id: pydocstyle
args: ['--convention=numpy', '--match="(?!test_).*\.py"']
args: [ '--convention=numpy', '--match="(?!test_).*\.py"' ]
- repo: https://github.com/keewis/blackdoc
rev: v0.3.8
hooks:
- id: blackdoc
additional_dependencies: [ 'black==23.3.0' ]
additional_dependencies: [ 'black==23.9.1' ]
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.32.0
hooks:
- id: yamllint
args: ['--config-file', '.yamllint.yaml']
args: [ '--config-file', '.yamllint.yaml' ]
# Git version too old on server
# - repo: https://github.com/mgedmin/check-manifest
# rev: "0.49"
Expand Down