diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4da06c3..8de765f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,18 +4,18 @@ ci: repos: - repo: https://github.com/psf/black-pre-commit-mirror - rev: "24.8.0" + rev: "25.1.0" hooks: - id: black-jupyter - repo: https://github.com/adamchainz/blacken-docs - rev: "1.18.0" + rev: "1.19.1" hooks: - id: blacken-docs additional_dependencies: [black==23.10.0] - repo: https://github.com/pre-commit/pre-commit-hooks - rev: "v4.6.0" + rev: "v5.0.0" hooks: - id: check-added-large-files - id: check-case-conflict @@ -45,13 +45,13 @@ repos: args: [--prose-wrap=always] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.6.5" + rev: "v0.11.7" hooks: - id: ruff args: ["--fix", "--show-fixes"] - repo: https://github.com/pre-commit/mirrors-mypy - rev: "v1.11.2" + rev: "v1.15.0" hooks: - id: mypy files: src|tests @@ -62,7 +62,7 @@ repos: - scikit-build-core[pyproject] - repo: https://github.com/codespell-project/codespell - rev: "v2.3.0" + rev: "v2.4.1" hooks: - id: codespell diff --git a/src/scikit_build_cli/__init__.py b/src/scikit_build_cli/__init__.py index fa03fc1..e6ee7ab 100644 --- a/src/scikit_build_cli/__init__.py +++ b/src/scikit_build_cli/__init__.py @@ -6,4 +6,4 @@ # Load and expose the main CLI interface from .main import skbuild -__all__: list[str] = ["skbuild", "__version__"] +__all__: list[str] = ["__version__", "skbuild"]