From 14f4ddcb55497faf25a3db60a7477ea4dbc236ed Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 7 Jul 2026 11:39:49 +0100 Subject: [PATCH 1/3] ci: mypy 2.3.0 --- ci/lint/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/lint/requirements.txt b/ci/lint/requirements.txt index e8abf041dc7..e9459225fb0 100644 --- a/ci/lint/requirements.txt +++ b/ci/lint/requirements.txt @@ -1,3 +1,3 @@ lief==0.17.5 -mypy==1.19.1 +mypy==2.3.0 pyzmq==27.1.0 From 058a73a0aea6b949763bbea305391d7f2218c429 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 7 Jul 2026 11:40:19 +0100 Subject: [PATCH 2/3] ci: use uv 11.x --- ci/lint_imagefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/lint_imagefile b/ci/lint_imagefile index a6c49a7c861..00f7f03ccfc 100644 --- a/ci/lint_imagefile +++ b/ci/lint_imagefile @@ -9,7 +9,7 @@ FROM mirror.gcr.io/ubuntu:24.04 # Pin uv and ruff to minor version to avoid breaking changes # https://docs.astral.sh/uv/reference/policies/versioning/ # https://docs.astral.sh/ruff/versioning/ -COPY --from=ghcr.io/astral-sh/uv:0.10 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.11 /uv /uvx /bin/ COPY --from=ghcr.io/astral-sh/ruff:0.15 /ruff /bin/ COPY ./ci/retry/retry /ci_retry From 900a7785bf56ab92560a3ec63423c9376a7b255d Mon Sep 17 00:00:00 2001 From: fanquake Date: Fri, 10 Jul 2026 10:16:19 +0100 Subject: [PATCH 3/3] ci: use Ubuntu 26.04 for lint container --- ci/lint_imagefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/lint_imagefile b/ci/lint_imagefile index 00f7f03ccfc..cc4986a7ec4 100644 --- a/ci/lint_imagefile +++ b/ci/lint_imagefile @@ -4,7 +4,7 @@ # See test/lint/README.md for usage. -FROM mirror.gcr.io/ubuntu:24.04 +FROM mirror.gcr.io/ubuntu:26.04 # Pin uv and ruff to minor version to avoid breaking changes # https://docs.astral.sh/uv/reference/policies/versioning/