diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ecba4f3..069f180 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -47,7 +47,7 @@ repos: exclude: \.ipynb$ - repo: https://github.com/codespell-project/codespell - rev: v2.3.0 + rev: v2.4.1 hooks: - id: codespell exclude: \.ipynb$|Gemfile\.lock$ @@ -61,13 +61,13 @@ repos: - id: rst-inline-touching-normal - repo: https://github.com/pre-commit/mirrors-clang-format - rev: v19.1.2 + rev: v20.1.8 hooks: - id: clang-format exclude: \.ipynb$ - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.7.1 + rev: v0.12.3 hooks: - id: ruff args: [--fix-only, --show-fixes] diff --git a/src/geant4_python_application/__init__.py b/src/geant4_python_application/__init__.py index 9840895..a6d16ad 100644 --- a/src/geant4_python_application/__init__.py +++ b/src/geant4_python_application/__init__.py @@ -19,16 +19,16 @@ __version__tuple__ = version_tuple __all__ = [ + "Application", + "Detector", "__version__", "__version__tuple__", - "geant4_version", + "application_directory", "awkward_version", - "pybind11_version", - "version", - "Application", - "Detector", "basic_gdml", - "install_datasets", "data_directory", - "application_directory", + "geant4_version", + "install_datasets", + "pybind11_version", + "version", ]