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

Merged
merged 2 commits into from
Feb 6, 2025
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 @@ -20,20 +20,20 @@ repos:
- id: check-toml

- repo: https://github.com/asottile/pyupgrade
rev: v3.19.0
rev: v3.19.1
hooks:
- id: pyupgrade
args: [--py39-plus]

- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black
types: [python]
additional_dependencies: ["click==8.0.4"]

- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.15.0
rev: v0.17.2
hooks:
- id: markdownlint-cli2

Expand All @@ -45,7 +45,7 @@ repos:
types: [python]

- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 6.0.0
hooks:
- id: isort
name: isort (python)
Expand All @@ -65,7 +65,7 @@ repos:
- id: nbstripout

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
rev: v1.14.1
hooks:
- id: mypy
args:
Expand All @@ -75,13 +75,13 @@ repos:

- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: "v0.8.1"
rev: "v0.9.4"
hooks:
- id: ruff

# Serious pylint errors that will be enforced by CI
- repo: https://github.com/pycqa/pylint
rev: v3.3.2
rev: v3.3.4
hooks:
- id: pylint
args:
Expand Down
2 changes: 1 addition & 1 deletion clarity/enhancer/multiband_compressor/compressor_qmul.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""""Module for the Compressor class."""
""" "Module for the Compressor class."""

from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion recipes/cad1/task1/baseline/enhance.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Run the dummy enhancement. """
"""Run the dummy enhancement."""

from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion recipes/cad1/task1/baseline/test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Run the baseline enhancement. """
"""Run the baseline enhancement."""

from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion recipes/cad1/task2/baseline/enhance.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Run the dummy enhancement. """
"""Run the dummy enhancement."""

# pylint: disable=too-many-locals
# pylint: disable=import-error
Expand Down
2 changes: 1 addition & 1 deletion recipes/cad1/task2/baseline/test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Run the dummy enhancement. """
"""Run the dummy enhancement."""

# pylint: disable=too-many-locals
# pylint: disable=import-error
Expand Down
2 changes: 1 addition & 1 deletion recipes/cad2/task2/baseline/enhance.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Run the dummy enhancement. """
"""Run the dummy enhancement."""

from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion recipes/cad_icassp_2024/baseline/enhance.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Run the dummy enhancement. """
"""Run the dummy enhancement."""

from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion recipes/cec3/baseline/enhance.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Run the dummy enhancement. """
"""Run the dummy enhancement."""

import json
import logging
Expand Down
2 changes: 1 addition & 1 deletion recipes/cpc2/baseline/compute_haspi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Compute the HASPI scores. """
"""Compute the HASPI scores."""

from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion recipes/icassp_2023/baseline/enhance.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Run the dummy enhancement. """
"""Run the dummy enhancement."""

import json
import logging
Expand Down
2 changes: 1 addition & 1 deletion recipes/icassp_2023/baseline/report_score.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Run the dummy enhancement. """
"""Run the dummy enhancement."""

import json
import logging
Expand Down
2 changes: 1 addition & 1 deletion tests/enhancer/multiband_compressor/test_crossover.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Tests for the CrossoverTwoOrMore class """
"""Tests for the CrossoverTwoOrMore class"""

import numpy as np
import pytest
Expand Down
2 changes: 1 addition & 1 deletion tests/regression/test_predictors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""""Regression tests for Predictors"""
""" "Regression tests for Predictors"""

import re

Expand Down
2 changes: 1 addition & 1 deletion tests/utils/test_source_separation_support.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Test module for the source separation support"""
"""Test module for the source separation support"""

# pylint: disable=import-error
from pathlib import Path
Expand Down