Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
iguinn authored Oct 21, 2024
2 parents 8e9bb40 + 6d226a2 commit 278887d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.5.0"
rev: "v5.0.0"
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand Down Expand Up @@ -34,18 +34,18 @@ repos:
- id: isort

- repo: https://github.com/asottile/pyupgrade
rev: "v3.15.2"
rev: "v3.17.0"
hooks:
- id: pyupgrade
args: ["--py38-plus"]

- repo: https://github.com/psf/black
rev: "24.3.0"
rev: "24.8.0"
hooks:
- id: black-jupyter

- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.9.0"
rev: "v1.11.2"
hooks:
- id: mypy
files: src
Expand All @@ -58,7 +58,7 @@ repos:
args: ["--all"]

- repo: https://github.com/PyCQA/flake8
rev: "7.0.0"
rev: "7.1.1"
hooks:
- id: flake8
additional_dependencies: [
Expand All @@ -81,7 +81,7 @@ repos:
stages: [manual]

- repo: https://github.com/codespell-project/codespell
rev: "v2.2.6"
rev: "v2.3.0"
hooks:
- id: codespell
args: ["-L", "nd,unparseable,compiletime"]
Expand Down
2 changes: 1 addition & 1 deletion src/dspeed/processors/gaussian_filter1d.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

# All this code belongs to the team that coded Scipy, found at this link:
# https://github.com/scipy/scipy/blob/v1.6.0/scipy/ndimage/filters.py#L210-L260
# The only thing changed was the calculation of the convulution, which
# The only thing changed was the calculation of the convolution, which
# originally called a function from a C library. In this code, the convolution is
# performed with NumPy's built in convolution function.
from __future__ import annotations
Expand Down

0 comments on commit 278887d

Please sign in to comment.