Skip to content
Open
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repos:


- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.15.4"
rev: "v0.15.9"
hooks:
- id: ruff-check
types: [file, python]
Expand All @@ -49,7 +49,7 @@ repos:
types: [file, python]

- repo: https://github.com/codespell-project/codespell
rev: "v2.4.1"
rev: "v2.4.2"
hooks:
- id: codespell
types_or: [asciidoc, python, markdown, rst]
Expand All @@ -72,7 +72,7 @@ repos:
types: [file, python]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.19.1'
rev: 'v1.20.0'
hooks:
- id: mypy
exclude: 'noxfile\.py|docs/conf\.py'
Expand All @@ -84,7 +84,7 @@ repos:
- id: validate-pyproject

- repo: https://github.com/scientific-python/cookie
rev: 2025.11.21
rev: 2026.04.04
hooks:
- id: sp-repo-review
additional_dependencies: ["repo-review[cli]"]
Expand Down
2 changes: 1 addition & 1 deletion src/stratify/tests/test_vinterp.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def test_npts(self):
class Test_custom_extrap_kernel(unittest.TestCase):
class my_kernel(vinterp.PyFuncExtrapolator):
def __init__(self, *args, **kwargs):
super(Test_custom_extrap_kernel.my_kernel, self).__init__(*args, **kwargs)
super().__init__(*args, **kwargs)

def extrap_kernel(self, direction, z_src, fz_src, level, output_array):
output_array[:] = -10
Expand Down
Loading