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 #304

Merged
merged 3 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
15 changes: 8 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ repos:
- id: debug-statements
- id: pretty-format-json
args: [ '--autofix', '--no-ensure-ascii', '--no-sort-keys' ]
exclude: .ipynb
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
Expand All @@ -29,16 +30,16 @@ repos:
rev: v0.23.1
hooks:
- id: toml-sort-fix
- repo: https://github.com/psf/black
rev: 23.7.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.9.1
hooks:
- id: black
exclude: ^docs/
- repo: https://github.com/pycqa/flake8
rev: 6.1.0
hooks:
- id: flake8
args: [ --config=setup.cfg ]
args: [ '--config=setup.cfg' ]
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
Expand All @@ -48,9 +49,9 @@ repos:
hooks:
- id: nbqa-pyupgrade
args: [ --py38-plus ]
additional_dependencies: [ 'pyupgrade==3.3.1' ]
additional_dependencies: [ 'pyupgrade==3.10.1' ]
- id: nbqa-black
additional_dependencies: [ 'black==23.3.0' ]
additional_dependencies: [ 'black==23.9.1' ]
- id: nbqa-isort
additional_dependencies: [ 'isort==5.12.0' ]
- repo: https://github.com/pycqa/pydocstyle
Expand All @@ -62,14 +63,14 @@ repos:
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' ]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.24.1
rev: 0.26.3
hooks:
- id: check-github-workflows
- id: check-readthedocs
Expand Down
Loading