Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ repos:
exclude: "^tests"

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.11
rev: v0.13.3
hooks:
- id: ruff
- id: ruff-check
args: ["--fix", "--show-fixes"]
- id: ruff-format

Expand All @@ -39,7 +39,7 @@ repos:
- id: rst-inline-touching-normal

- repo: https://github.com/adamchainz/blacken-docs
rev: 1.19.1
rev: 1.20.0
hooks:
- id: blacken-docs
additional_dependencies: [black==24.*]
Expand All @@ -59,7 +59,7 @@ repos:
exclude: "^tests|src/scikit_build_core/resources/scikit-build.schema.json|^docs/projects.md"

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.17.1
rev: v1.18.2
hooks:
- id: mypy
exclude: |
Expand Down Expand Up @@ -131,12 +131,12 @@ repos:
additional_dependencies: ["cogapp>=3.5"]

- repo: https://github.com/henryiii/validate-pyproject-schema-store
rev: 2025.08.29
rev: 2025.10.03
hooks:
- id: validate-pyproject

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.33.3
rev: 0.34.0
hooks:
- id: check-dependabot
- id: check-github-workflows
Expand All @@ -150,6 +150,6 @@ repos:
- id: validate-cff

- repo: https://github.com/scientific-python/cookie
rev: 2025.05.02
rev: 2025.10.01
hooks:
- id: sp-repo-review
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@
("py:class", "T"),
("py:class", "scikit_build_core.settings.sources.T"),
("py:class", "scikit_build_core._vendor.pyproject_metadata.StandardMetadata"),
("py:data", "typing.Union"),
]

linkcheck_anchors_ignore = [
Expand Down
2 changes: 1 addition & 1 deletion tests/test_printouts.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

def test_builder_printout(capsys: pytest.CaptureFixture[str]) -> None:
main()
out, err = capsys.readouterr()
out, _ = capsys.readouterr()
assert "Detected Python Library" in out
Loading