Skip to content

fix(ci): regenerate consumer uv locks after the pytest 9 bump - #6134

Merged
mmabrouk merged 1 commit into
release/v0.112.3from
fix/regenerate-consumer-uv-locks
Aug 20, 2026
Merged

fix(ci): regenerate consumer uv locks after the pytest 9 bump#6134
mmabrouk merged 1 commit into
release/v0.112.3from
fix/regenerate-consumer-uv-locks

Conversation

@mmabrouk

Copy link
Copy Markdown
Member

Context

The api, sdk, and services unit-test jobs and the agenta-api / agenta-services image builds all fail on release/v0.112.3 because uv sync --locked rejects the lockfiles. Dependabot PR #5979 bumped the dev-group pytest bound in clients/python/pyproject.toml from >=8,<9 to >=9.0.3,<10 but regenerated only clients/python/uv.lock. The three consumers that install agenta-client as an editable dependency embed its requires-dev metadata in their own lockfiles, and those still recorded the old bound, so every uv sync --locked sees a lock that no longer matches the source tree. In the docker builds the install step swallows the error and ships an empty venv, which the verify step then catches.

Changes

Ran uv lock (uv 0.11.14, the version CI pins) in api/, sdks/python/, and services/. Each lockfile changes exactly one line, in agenta-client's [package.metadata.requires-dev] block:

Before:

dev = [{ name = "pytest", specifier = ">=8,<9" }]

After:

dev = [{ name = "pytest", specifier = ">=9.0.3,<10" }]

No resolved package versions change; pytest lives in the dev group, which these consumers do not install.

This clears six jobs: the api, sdk, and services unit tests, plus the agenta-api and agenta-services image builds on both amd64 and arm64. A plain re-run could not fix the image builds: the poisoned install layer sat in the shared build cache, and only a lockfile change shifts the layer digests past it.

Tests

  • uv lock --check (uv 0.11.14) passes in all three directories after regeneration.
  • git diff --stat confirms 3 files, 1 line each; nothing else moved.

@dosubot dosubot Bot added the size:XS This PR changes 0-9 lines, ignoring generated files. label Aug 20, 2026
@vercel

vercel Bot commented Aug 20, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
agenta-documentation Ready Ready Preview Aug 20, 2026 5:23pm

Request Review

@dosubot dosubot Bot added ci/cd dependencies Dependencies labels Aug 20, 2026
@coderabbitai

coderabbitai Bot commented Aug 20, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Review was skipped due to path filters

⛔ Files ignored due to path filters (3)
  • api/uv.lock is excluded by !**/*.lock
  • sdks/python/uv.lock is excluded by !**/*.lock
  • services/uv.lock is excluded by !**/*.lock

CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including **/dist/** will override the default block on the dist directory, by removing the pattern from both the lists.

⚙️ Run configuration

Configuration used: Repository YAML (base), Organization UI (inherited)

Review profile: CHILL

Plan: Pro Plus

Run ID: 35c7eaac-f46e-4b73-890c-e053e5e87a9f

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@github-actions

github-actions Bot commented Aug 20, 2026

Copy link
Copy Markdown
Contributor

Railway Preview Environment

Status Destroyed (PR closed)

Updated at 2026-08-20T17:44:37.279Z

@mmabrouk
mmabrouk merged commit dd45b85 into release/v0.112.3 Aug 20, 2026
60 of 63 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ci/cd dependencies Dependencies size:XS This PR changes 0-9 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant