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
6 changes: 3 additions & 3 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.11.0
rev: v0.11.4
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]
Expand Down Expand Up @@ -129,12 +129,12 @@ repos:
additional_dependencies: [cogapp]

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

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.31.3
rev: 0.32.1
hooks:
- id: check-dependabot
- id: check-github-workflows
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ test-meta = [
"setuptools-scm",
]
test-numpy = [
"numpy; python_version<'3.13' and platform_python_implementation!='PyPy'",
"numpy; python_version<'3.14' and platform_python_implementation!='PyPy'",
"numpy~=1.24.0; python_version=='3.8' and platform_python_implementation=='PyPy'",
"numpy~=2.0.0; python_version=='3.9' and platform_python_implementation=='PyPy'",
]
Expand Down Expand Up @@ -127,7 +127,6 @@ build.hooks.vcs.version-file = "src/scikit_build_core/_version.py"

[tool.uv]
dev-dependencies = ["scikit-build-core[test,test-hatchling,test-meta,test-numpy,test-schema,cov,dev]"]
pip.reinstall-package = ["scikit-build-core"]
workspace.members = ["tmp/hello/hello"]


Expand All @@ -146,8 +145,9 @@ filterwarnings = [
"default:check_home argument is deprecated and ignored.:DeprecationWarning", # Caused by setuptools sometimes
"ignore::scikit_build_core._vendor.pyproject_metadata.errors.ConfigurationWarning",
"ignore:'_UnionGenericAlias' is deprecated and slated for removal in Python 3.17:DeprecationWarning", # From cattrs 24.1.2 and other?
"ignore:The 'wheel.metadata' package has been made private:DeprecationWarning",
]
log_cli_level = "info"
log_cli_level = "INFO"
pythonpath = ["tests/utils"]
testpaths = ["tests"]
markers = [
Expand Down
Loading