Skip to content

Commit 5089f5e

Browse files
authored
Merge branch 'main' into renovate/docker-setup-qemu-action-3.x
2 parents 23b1030 + babf4df commit 5089f5e

File tree

3 files changed

+228
-142
lines changed

3 files changed

+228
-142
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ repos:
1919
args: [--maxkb=1000]
2020
exclude: \.ipynb
2121
- repo: https://github.com/astral-sh/ruff-pre-commit
22-
rev: v0.9.4
22+
rev: v0.9.5
2323
hooks:
2424
- id: ruff
2525
files: spectrafit/
2626
- id: ruff-format
2727
files: spectrafit/
2828
- repo: https://github.com/pre-commit/mirrors-mypy
29-
rev: v1.14.1
29+
rev: v1.15.0
3030
hooks:
3131
- id: mypy
3232
additional_dependencies:

spectrafit/test/test_models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ def test_distance(self) -> None:
708708
x = 3.0 * np.arange(10, dtype=np.float64)
709709
data = 3.0 * np.exp(10, dtype=np.float64)
710710

711-
auto = AutoPeakDetection(x=x, data=data, args=args) # type: ignore
711+
auto = AutoPeakDetection(x=x, data=data, args=args)
712712
_val = auto.estimate_distance
713713
assert not isclose(_val, 1.0)
714714

0 commit comments

Comments
 (0)