Skip to content

Commit

Permalink
Merge branch 'main' into ariostas/more_rntuples
Browse files Browse the repository at this point in the history
  • Loading branch information
ariostas authored Dec 13, 2024
2 parents 22e3893 + ef38efa commit 8e0364e
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 8e0364e

Please sign in to comment.