From f3673457c3e511a3344c4e5113534cb7ac65e198 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Tue, 1 Sep 2026 13:54:24 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(summary)=20refresh=20summary=20uv.?= =?UTF-8?q?lock?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The summary `uv.lock` had not been updated in the last few releases. The CI is now refactored to use `uv sync --locked`, which fails when the lockfile is out of sync with `pyproject.toml`. Regenerate the lockfile so `uv sync --locked` passes again. --- bin/prepare-release.sh | 7 +++++++ src/summary/uv.lock | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/bin/prepare-release.sh b/bin/prepare-release.sh index 88be5251..09de16d3 100755 --- a/bin/prepare-release.sh +++ b/bin/prepare-release.sh @@ -110,6 +110,12 @@ cd - # Update summary pyproject.toml update_python_version "summary" +# Run uv lock in summary +print_info "Running uv lock in summary..." +cd "src/summary" +uv lock +cd - + # Update agents pyproject.toml update_python_version "agents" @@ -163,6 +169,7 @@ echo " - src/mail/package.json" echo " - src/backend/pyproject.toml" echo " - src/backend/uv.lock" echo " - src/summary/pyproject.toml" +echo " - src/summary/uv.lock" echo " - src/agents/pyproject.toml" echo " - src/agents/uv.lock" echo " - CHANGELOG.md" diff --git a/src/summary/uv.lock b/src/summary/uv.lock index a4b7a85e..4dce9f8f 100644 --- a/src/summary/uv.lock +++ b/src/summary/uv.lock @@ -1507,7 +1507,7 @@ wheels = [ [[package]] name = "summary" -version = "1.26.0" +version = "1.30.0" source = { editable = "." } dependencies = [ { name = "celery" },