From f2905f8a758fe5fe34a73ed5f818594660d37dc6 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 7 Apr 2025 21:36:48 +0000 Subject: [PATCH 1/4] chore(deps): update pre-commit hooks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.11.0 → v0.11.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.11.0...v0.11.4) - [github.com/henryiii/validate-pyproject-schema-store: 2025.03.10 → 2025.04.07](https://github.com/henryiii/validate-pyproject-schema-store/compare/2025.03.10...2025.04.07) - [github.com/python-jsonschema/check-jsonschema: 0.31.3 → 0.32.1](https://github.com/python-jsonschema/check-jsonschema/compare/0.31.3...0.32.1) --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b4c94e769..98327bd21 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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"] @@ -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 From be0b9911939482c564acfdfedb6d6d1ed97e9329 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 8 Apr 2025 17:21:01 -0400 Subject: [PATCH 2/4] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dcd667322..c5a838732 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,7 +147,7 @@ filterwarnings = [ "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? ] -log_cli_level = "info" +log_cli_level = "INFO" pythonpath = ["tests/utils"] testpaths = ["tests"] markers = [ From 4d11550ca209b4a62a8de8ac277ec80de6483ef2 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 8 Apr 2025 18:04:24 -0400 Subject: [PATCH 3/4] chore: numpy for 3.13 Signed-off-by: Henry Schreiner --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c5a838732..4d209d159 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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'", ] @@ -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"] From 337f5717821b70159e818cfd4419ef0a6aba19dd Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 8 Apr 2025 18:23:23 -0400 Subject: [PATCH 4/4] Update pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 4d209d159..fafde0f26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -145,6 +145,7 @@ 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" pythonpath = ["tests/utils"]