Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#1548)
Browse files Browse the repository at this point in the history
<!--pre-commit.ci start-->
updates:
- [github.com/adrienverge/yamllint.git: v1.32.0 →
v1.33.0](https://github.com/adrienverge/yamllint.git/compare/v1.32.0...v1.33.0)
- [github.com/psf/black: 23.10.1 →
23.11.0](psf/black@23.10.1...23.11.0)
- [github.com/astral-sh/ruff-pre-commit: v0.1.4 →
v0.1.6](astral-sh/ruff-pre-commit@v0.1.4...v0.1.6)
- [github.com/nbQA-dev/nbQA: 1.7.0 →
1.7.1](nbQA-dev/nbQA@1.7.0...1.7.1)
- [github.com/python-jsonschema/check-jsonschema: 0.27.1 →
0.27.2](python-jsonschema/check-jsonschema@0.27.1...0.27.2)
<!--pre-commit.ci end-->
  • Loading branch information
Zeitsperre authored Dec 4, 2023
2 parents 7c1ab16 + 1ea2cc6 commit 6f75016
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,61 +18,60 @@ repos:
- id: check-json
- id: check-toml
- id: check-yaml
args: ['--allow-multiple-documents']
args: [ '--allow-multiple-documents' ]
- id: debug-statements
- id: pretty-format-json
args: ['--autofix', '--no-ensure-ascii', '--no-sort-keys']
args: [ '--autofix', '--no-ensure-ascii', '--no-sort-keys' ]
exclude: '.ipynb'
- repo: https://github.com/pappasam/toml-sort
rev: v0.23.1
hooks:
- id: toml-sort-fix
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.32.0
rev: v1.33.0
hooks:
- id: yamllint
args: ['--config-file=.yamllint.yaml']
- repo: https://github.com/psf/black
rev: 23.10.1
args: [ '--config-file=.yamllint.yaml' ]
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.11.0
hooks:
- id: black
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
- id: isort
args: ['--settings-file=pyproject.toml']
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.4
rev: v0.1.6
hooks:
- id: ruff
- repo: https://github.com/pycqa/flake8
rev: 6.1.0
hooks:
- id: flake8
additional_dependencies: ['flake8-alphabetize', 'flake8-rst-docstrings']
args: ['--config=setup.cfg']
additional_dependencies: [ 'flake8-alphabetize', 'flake8-rst-docstrings ']
args: [ '--config=setup.cfg' ]
- repo: https://github.com/nbQA-dev/nbQA
rev: 1.7.0
rev: 1.7.1
hooks:
- id: nbqa-black
additional_dependencies: [ 'black==23.11.0' ]
- id: nbqa-pyupgrade
args: ['--py38-plus']
args: [ '--py38-plus' ]
- id: nbqa-isort
args: ['--settings-file=pyproject.toml']
- repo: https://github.com/kynan/nbstripout
rev: 0.6.1
hooks:
- id: nbstripout
files: '.ipynb'
args: [ "--extra-keys", "metadata.kernelspec" ]
args: [ '--extra-keys', 'metadata.kernelspec' ]
- repo: https://github.com/keewis/blackdoc
rev: v0.3.9
hooks:
- id: blackdoc
exclude: '(xclim/indices/__init__.py|docs/installation.rst)'
additional_dependencies: ['black==23.10.1']
additional_dependencies: [ 'black==23.11.0' ]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.27.1
rev: 0.27.2
hooks:
- id: check-github-workflows
- id: check-readthedocs
Expand Down

0 comments on commit 6f75016

Please sign in to comment.