Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repos:
exclude: "^tests"

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.3
rev: v0.14.3
hooks:
- id: ruff-check
args: ["--fix", "--show-fixes"]
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.10.03
rev: 2025.11.02
hooks:
- id: validate-pyproject

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.34.0
rev: 0.34.1
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.10.01
rev: 2025.10.20
hooks:
- id: sp-repo-review
10 changes: 10 additions & 0 deletions noxfile.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#!/usr/bin/env -S uv run --script

# /// script
# dependencies = ["nox>=2404.4.15"]
# ///

"""
Scikit-build-core's nox configuration.

Expand Down Expand Up @@ -339,3 +345,7 @@ def vendor_pyproject_metadata(session: nox.Session) -> None:
) as response:
txt = response.read()
local_path.write_bytes(txt)


if __name__ == "__main__":
nox.main()
Loading