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

Merged
merged 2 commits into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
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
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ ci:
repos:

- repo: https://github.com/keewis/blackdoc
rev: v0.3.8
rev: v0.3.9
hooks:
- id: blackdoc
files: '\.py$'

- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
args: [
Expand All @@ -21,15 +21,15 @@ repos:
]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.3
rev: v0.1.9
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
exclude: ^(doc/|tests)
- id: ruff-format

- repo: https://github.com/keewis/blackdoc
rev: v0.3.8
rev: v0.3.9
hooks:
- id: blackdoc
files: '\.py$'
Expand All @@ -49,7 +49,7 @@ repos:
exclude: "tests/"

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v16.0.6
rev: v17.0.6
hooks:
- id: clang-format
files: |
Expand All @@ -58,7 +58,7 @@ repos:
)$

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.6.1
rev: v1.8.0
hooks:
- id: mypy
exclude: ^(doc/|tests)
Expand All @@ -69,14 +69,14 @@ repos:
]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-merge-conflict
- id: debug-statements
- id: trailing-whitespace
exclude: '.*\.(cdb|rst|dat)$'

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.27.0
rev: 0.27.3
hooks:
- id: check-github-workflows
2 changes: 1 addition & 1 deletion mapdl_archive/_reader.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def read(
read_eblock: bool = True,
) -> ReadReturnDict: ...
def node_block_format(
string: Union[bytes, str]
string: Union[bytes, str],
) -> Tuple[npt.NDArray[np.int32], int, int, int]: ...
def ans_vtk_convert(
elem: npt.NDArray[np.int32],
Expand Down