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 @@ -2,29 +2,29 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files

- repo: https://github.com/psf/black
rev: 24.10.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.12.0
hooks:
- id: black
args: [--safe, --line-length=100, --preview]
language_version: python3

- repo: https://github.com/pycqa/docformatter
rev: v1.7.6
rev: v1.7.7
hooks:
- id: docformatter
additional_dependencies: [tomli]
args: [--config, pyproject.toml]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
rev: v1.19.1
hooks:
- id: mypy
additional_dependencies: [
Expand All @@ -33,7 +33,7 @@ repos:
]

- repo: https://github.com/pycqa/flake8
rev: 7.1.1
rev: 7.3.0
hooks:
- id: flake8

Expand Down
1 change: 0 additions & 1 deletion strax/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import strax
from strax import CutList


export, __all__ = strax.exporter()
__all__.extend(["RUN_DEFAULTS_KEY"])

Expand Down
1 change: 0 additions & 1 deletion strax/dtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import numba # noqa: F401
import strax


__all__ = (
"interval_dtype raw_record_dtype record_dtype hit_dtype peak_dtype "
"DIGITAL_SUM_WAVEFORM_CHANNEL DEFAULT_RECORD_LENGTH "
Expand Down
1 change: 0 additions & 1 deletion strax/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import deepdiff
import copy


# Change numba's caching backend from pickle to dill
# I'm sure they don't mind...
# Otherwise we get strange errors while caching the @growing_result functions
Expand Down