From ef38efaac9ffa9a82eca7aae98a3ba3077b801ad Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 09:20:33 +0100 Subject: [PATCH] chore: [pre-commit.ci] pre-commit autoupdate (#166) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [pre-commit.ci] pre-commit autoupdate updates: - [github.com/asottile/setup-cfg-fmt: v2.5.0 → v2.7.0](https://github.com/asottile/setup-cfg-fmt/compare/v2.5.0...v2.7.0) - [github.com/pre-commit/mirrors-mypy: v1.11.2 → v1.13.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.11.2...v1.13.0) - [github.com/astral-sh/ruff-pre-commit: v0.6.9 → v0.8.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.6.9...v0.8.1) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .pre-commit-config.yaml | 6 +++--- src/skhep_testdata/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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