diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 30d294d..8b345f7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,13 +23,13 @@ repos: - id: black - repo: https://github.com/asottile/setup-cfg-fmt - rev: v2.5.0 + rev: v2.7.0 hooks: - id: setup-cfg-fmt args: [--include-version-classifiers, --max-py-version=3.13] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.11.2 + rev: v1.13.0 hooks: - id: mypy files: src @@ -39,7 +39,7 @@ repos: - types-requests - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.6.9" + rev: "v0.8.1" hooks: - id: ruff args: ["--fix", "--show-fixes"] diff --git a/src/skhep_testdata/__init__.py b/src/skhep_testdata/__init__.py index 6b76598..97a8661 100644 --- a/src/skhep_testdata/__init__.py +++ b/src/skhep_testdata/__init__.py @@ -3,7 +3,7 @@ from .local_files import data_path, download_all, known_files from .version import version as __version__ -__all__ = ("data_path", "download_all", "known_files", "__version__") +__all__ = ("__version__", "data_path", "download_all", "known_files") def __dir__() -> tuple[str, ...]: # pragma: no cover