Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#64)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/psf/black: 22.10.0 → 23.7.0](psf/black@22.10.0...23.7.0)
- [github.com/pycqa/isort: 5.10.1 → 5.12.0](PyCQA/isort@5.10.1...5.12.0)
- [github.com/PyCQA/flake8: 5.0.4 → 6.1.0](PyCQA/flake8@5.0.4...6.1.0)
- [github.com/codespell-project/codespell: v2.2.2 → v2.2.5](codespell-project/codespell@v2.2.2...v2.2.5)
- [github.com/pycqa/pydocstyle: 6.1.1 → 6.3.0](PyCQA/pydocstyle@6.1.1...6.3.0)
- [github.com/pre-commit/mirrors-mypy: v0.982 → v1.5.1](pre-commit/mirrors-mypy@v0.982...v1.5.1)
- [github.com/pre-commit/pre-commit-hooks: v4.3.0 → v4.4.0](pre-commit/pre-commit-hooks@v4.3.0...v4.4.0)
- [github.com/python-jsonschema/check-jsonschema: 0.18.4 → 0.24.1](python-jsonschema/check-jsonschema@0.18.4...0.24.1)

* mypy-extensions

* remove flake8-black

* Bump flake8-quotes

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Alex Kaszynski <[email protected]>
Co-authored-by: MatthewFlamm <[email protected]>
  • Loading branch information
3 people committed Aug 25, 2023
1 parent 3041069 commit 7dd5ff6
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/psf/black
rev: 22.10.0
rev: 23.7.0
hooks:
- id: black

Expand All @@ -10,16 +10,15 @@ repos:
- id: isort

- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
rev: 6.1.0
hooks:
- id: flake8
additional_dependencies: [
"flake8-black==0.3.3",
"flake8-quotes==3.3.1",
"flake8-quotes==3.3.2",
]

- repo: https://github.com/codespell-project/codespell
rev: v2.2.2
rev: v2.2.5
hooks:
- id: codespell
args: [
Expand All @@ -28,26 +27,26 @@ repos:
]

- repo: https://github.com/pycqa/pydocstyle
rev: 6.1.1
rev: 6.3.0
hooks:
- id: pydocstyle
additional_dependencies: [toml==0.10.2]
files: ^(pytest-pyvista/|other/)
exclude: ^pytest-pyvista/ext/

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.982
rev: v1.5.1
hooks:
- id: mypy
exclude: ^(doc/|tests/|examples/|pytest-pyvista/ext/|examples_flask/)
additional_dependencies: [
"mypy-extensions==0.4.3",
"mypy-extensions==1.0.0",
"toml==0.10.2",
"typing-extensions==4.1.1",
]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.4.0
hooks:
- id: check-merge-conflict
- id: debug-statements
Expand All @@ -57,6 +56,6 @@ repos:

# this validates our github workflow files
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.18.4
rev: 0.24.1
hooks:
- id: check-github-workflows

0 comments on commit 7dd5ff6

Please sign in to comment.