Skip to content

Commit 4c905b1

Browse files
committed
chore: some updates from pre-commit
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent 2c39e45 commit 4c905b1

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repos:
2727
- repo: https://github.com/astral-sh/ruff-pre-commit
2828
rev: v0.13.3
2929
hooks:
30-
- id: ruff
30+
- id: ruff-check
3131
args: ["--fix", "--show-fixes"]
3232
- id: ruff-format
3333

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@
107107
("py:class", "T"),
108108
("py:class", "scikit_build_core.settings.sources.T"),
109109
("py:class", "scikit_build_core._vendor.pyproject_metadata.StandardMetadata"),
110+
("py:data", "typing.Union"),
110111
]
111112

112113
linkcheck_anchors_ignore = [

tests/test_printouts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010

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

0 commit comments

Comments
 (0)