From 8aed8729131b8f6f5b12704864744144db44db7f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 30 Jun 2025 20:53:41 +0000 Subject: [PATCH 1/3] 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.13 → v0.12.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.11.13...v0.12.1) - [github.com/pre-commit/mirrors-mypy: v1.16.0 → v1.16.1](https://github.com/pre-commit/mirrors-mypy/compare/v1.16.0...v1.16.1) --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 76293f2a..fbb99792 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,13 +17,13 @@ repos: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.11.13" + rev: "v0.12.1" hooks: - id: ruff args: [--fix, --show-fixes] - repo: https://github.com/pre-commit/mirrors-mypy - rev: "v1.16.0" + rev: "v1.16.1" hooks: - id: mypy files: ^(src|scripts) From 2dbf316b685c3e686ddc7a68539769abe7365af6 Mon Sep 17 00:00:00 2001 From: mayeut Date: Sat, 28 Jun 2025 11:48:41 +0200 Subject: [PATCH 2/3] Update pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index b63a74c7..b835f88b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -187,6 +187,7 @@ exclude = ["src/cmake/_version.py"] flake8-unused-arguments.ignore-variadic-names = true [tool.ruff.lint.per-file-ignores] +"_build_backend/backend.py" = ["PLC0415"] "docs/conf.py" = ["E402"] "*.pyi" = ["ARG001"] "noxfile.py" = ["PLW0603"] From a2fecabd04a8d08fb49b9f01294964ac563dff43 Mon Sep 17 00:00:00 2001 From: mayeut Date: Wed, 2 Jul 2025 06:52:46 +0200 Subject: [PATCH 3/3] ci: move to windows-2022 windows-2019 has been removed --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4702ec30..c7327de2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -92,7 +92,7 @@ jobs: arch: "armv7l" build: "musllinux_" use_qemu: false - - os: windows-2019 + - os: windows-2022 arch: "AMD64" build: "" use_qemu: false @@ -100,7 +100,7 @@ jobs: arch: "ARM64" build: "" use_qemu: false - - os: windows-2019 + - os: windows-2022 arch: "x86" build: "" use_qemu: false