diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index deba077..ab413c9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,7 +14,7 @@ repos: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.7.4" + rev: "v0.8.2" hooks: - id: ruff args: [--fix, --show-fixes] @@ -33,7 +33,7 @@ repos: additional_dependencies: ["validate-pyproject-schema-store[all]>=2024.10.21"] - repo: https://github.com/python-jsonschema/check-jsonschema - rev: "0.29.4" + rev: "0.30.0" hooks: - id: check-dependabot - id: check-github-workflows diff --git a/src/ninja/__init__.py b/src/ninja/__init__.py index 5a143f8..252a4b8 100644 --- a/src/ninja/__init__.py +++ b/src/ninja/__init__.py @@ -10,7 +10,7 @@ from ._version import version as __version__ from .ninja_syntax import Writer, escape, expand -__all__ = ["__version__", "DATA", "BIN_DIR", "ninja", "Writer", "escape", "expand"] +__all__ = ["BIN_DIR", "DATA", "Writer", "__version__", "escape", "expand", "ninja"] def __dir__() -> list[str]: