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

chore(deps): pre-commit.ci autoupdate #19

Merged
merged 2 commits into from
Sep 5, 2023
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
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ repos:
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.16
rev: 0.7.17
hooks:
- id: mdformat
additional_dependencies:
Expand Down Expand Up @@ -83,7 +83,7 @@ repos:
- id: black-jupyter
language_version: python3
- repo: https://github.com/asottile/blacken-docs
rev: 1.15.0
rev: 1.16.0
hooks:
- id: blacken-docs
- repo: https://github.com/PyCQA/docformatter
Expand All @@ -92,7 +92,7 @@ repos:
- id: docformatter
additional_dependencies: [tomli]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.282
rev: v0.0.287
hooks:
- id: ruff
args: [--fix]
Expand All @@ -119,7 +119,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/PyCQA/pylint
rev: v3.0.0a6
rev: v3.0.0a7
hooks:
- id: pylint
- repo: https://github.com/asottile/pyupgrade
Expand All @@ -128,7 +128,7 @@ repos:
- id: pyupgrade
args: [--py37-plus]
- repo: https://github.com/PyCQA/autoflake
rev: v2.2.0
rev: v2.2.1
hooks:
- id: autoflake
- repo: https://github.com/kynan/nbstripout
Expand Down Expand Up @@ -162,11 +162,11 @@ repos:
alias: nbqa-autoflake
additional_dependencies: [autoflake]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.26.3
hooks:
- id: check-github-workflows
- repo: https://github.com/crate-ci/typos
rev: typos-dict-v0.10.8
rev: v1.16.10
hooks:
- id: typos
exclude_types:
Expand Down
2 changes: 1 addition & 1 deletion vibromaf/util/matlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def load_data_for_metric(
)

train_indices = [
element for element in range(0, vcpwq.shape[1]) if element not in test_indices
element for element in range(vcpwq.shape[1]) if element not in test_indices
]

return np.concatenate(
Expand Down