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
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-yaml
- id: fix-encoding-pragma
Expand All @@ -18,27 +18,27 @@ repos:
args: ['--maxkb=500']

- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.9.0
hooks:
- id: black

- repo: https://github.com/asottile/blacken-docs
rev: 1.19.1
rev: 1.20.0
hooks:
- id: blacken-docs
additional_dependencies: [black==23.1.0]
exclude: README.md

- repo: https://github.com/pycqa/isort
rev: 6.0.0
rev: 7.0.0
hooks:
- id: isort
name: isort (python)
args:
- --profile=black

- repo: https://github.com/asottile/pyupgrade
rev: v3.19.1
rev: v3.21.0
hooks:
- id: pyupgrade
args: [--py38-plus]
Expand Down Expand Up @@ -71,6 +71,6 @@ repos:
- id: rst-inline-touching-normal

- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.14.1' # Use the sha / tag you want to point at
rev: 'v1.18.2' # Use the sha / tag you want to point at
hooks:
- id: mypy
2 changes: 1 addition & 1 deletion tests/test_ols.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Sanity checks: literally just copied from sklearn tests... """
"""Sanity checks: literally just copied from sklearn tests..."""

import numpy as np
import numpy.testing as npt
Expand Down
Loading