Skip to content

Commit

Permalink
chore: [pre-commit.ci] pre-commit autoupdate (#166)
Browse files Browse the repository at this point in the history
* chore: [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/asottile/setup-cfg-fmt: v2.5.0 → v2.7.0](asottile/setup-cfg-fmt@v2.5.0...v2.7.0)
- [github.com/pre-commit/mirrors-mypy: v1.11.2 → v1.13.0](pre-commit/mirrors-mypy@v1.11.2...v1.13.0)
- [github.com/astral-sh/ruff-pre-commit: v0.6.9 → v0.8.1](astral-sh/ruff-pre-commit@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>
  • Loading branch information
pre-commit-ci[bot] authored Dec 3, 2024
1 parent fc8f563 commit ef38efa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"]
2 changes: 1 addition & 1 deletion src/skhep_testdata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ef38efa

Please sign in to comment.