Skip to content

fix(deps): update third party deps to v16#5833

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-third-party-deps
Open

fix(deps): update third party deps to v16#5833
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-third-party-deps

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 25, 2026

This PR contains the following updates:

Package Change Age Confidence
websockets (changelog) >=13.1,<16.0 β†’ >=16,<16.1 age confidence

Release Notes

python-websockets/websockets (websockets)

v16.0

Compare Source

See https://websockets.readthedocs.io/en/stable/project/changelog.html for details.


Configuration

πŸ“… Schedule: (UTC)

  • Branch creation
    • "before 9am on monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented May 25, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

β™» Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: uv.lock
Command failed: uv lock --upgrade-package websockets
Using CPython 3.14.5 interpreter at: /opt/containerbase/tools/python/3.14.5/bin/python3
  Γ— No solution found when resolving dependencies for split (markers:
  β”‚ python_full_version == '3.14.*'):
  ╰─▢ Because openai[realtime]>=2.36.0 depends on websockets>=13,<16
      and websockets>=13,<16, we can conclude that
      openai[realtime]>=2.36.0,<=2.37.0 depends on websockets>=13,<16.
      And because openai[realtime]>=2.38.0 depends on websockets>=13,<16 and
      only the following versions of openai[realtime] are available:
          openai[realtime]<=2.36.0
          openai[realtime]==2.37.0
          openai[realtime]==2.38.0
          openai[realtime]==2.39.0
          openai[realtime]==2.40.0
      we can conclude that openai[realtime]>=2.36.0,<2.39.0 depends on
      websockets>=13,<16. (1)

      Because openai[realtime]>=2.39.0 depends on websockets>=13,<16 and only
      the following versions of openai[realtime] are available:
          openai[realtime]<=2.36.0
          openai[realtime]==2.37.0
          openai[realtime]==2.38.0
          openai[realtime]==2.39.0
          openai[realtime]==2.40.0
      we can conclude that openai[realtime]>2.38.0,<2.40.0 depends on
      websockets>=13,<16.
      And because we know from (1) that openai[realtime]>=2.36.0,<2.39.0
      depends on websockets>=13,<16, we can conclude that
      openai[realtime]>=2.36.0,<2.40.0 depends on websockets>=13,<16.
      And because openai[realtime]==2.40.0 depends on websockets>=13,<16,
      we can conclude that openai[realtime]>=2.36.0 depends on
      websockets>=13,<16.
      And because livekit-plugins-openai depends on openai[realtime]>=2.36 and
      livekit-plugins-gnani depends on websockets>=16,<16.1, we can conclude
      that livekit-plugins-gnani and livekit-plugins-openai are incompatible.
      And because your workspace requires livekit-plugins-gnani and
      livekit-plugins-openai[vertex], we can conclude that your workspace's
      requirements are unsatisfiable.

@chenghao-mou chenghao-mou requested a review from a team May 25, 2026 01:54
Copy link
Copy Markdown
Contributor

@devin-ai-integration devin-ai-integration Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Devin Review found 1 potential issue.

View 2 additional findings in Devin Review.

Open in Devin Review

dependencies = [
"livekit-agents[codecs]>=1.5.8",
"websockets>=13.1,<16.0",
"websockets>=16,<16.1",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ”΄ uv.lock not updated after websockets version bump β€” lock file is stale and inconsistent

The pyproject.toml was changed to require websockets>=16,<16.1, but the shared uv.lock file was not regenerated. The lock file still resolves websockets to version 15.0.1 and records the old specifier >=13.1,<16.0 for livekit-plugins-gnani. This means uv sync will detect a stale lock and fail (or silently use the wrong version), since 15.0.1 does not satisfy >=16,<16.1.

Stale lock file metadata

In uv.lock, the gnani entry still reads:

[package.metadata]
requires-dist = [
    { name = "websockets", specifier = ">=13.1,<16.0" },
]

And websockets is resolved globally to 15.0.1, which is incompatible with the new >=16,<16.1 requirement.

Prompt for agents
The pyproject.toml was updated to require websockets>=16,<16.1 but the root uv.lock was not regenerated. The lock file still resolves websockets to 15.0.1 and records the old specifier >=13.1,<16.0 for livekit-plugins-gnani. Run `uv lock` from the repository root to regenerate the lock file. Note that since this is a uv workspace with a single lock file, upgrading websockets to 16.x will affect all workspace members that depend on websockets (e.g. livekit-plugins-phonic, google-genai, fal-client, speechmatics-rt). Verify that all those packages are compatible with websockets 16.x before merging.
Open in Devin Review

Was this helpful? React with πŸ‘ or πŸ‘Ž to provide feedback.

@renovate renovate Bot force-pushed the renovate/major-third-party-deps branch 2 times, most recently from c5d66e7 to 8734c34 Compare May 27, 2026 23:17
devin-ai-integration[bot]

This comment was marked as resolved.

@renovate renovate Bot force-pushed the renovate/major-third-party-deps branch 2 times, most recently from 39431a4 to 75a73a5 Compare June 1, 2026 21:00
@renovate renovate Bot changed the title fix(deps): update dependency websockets to v16 fix(deps): update third party deps to v16 Jun 2, 2026
@renovate renovate Bot force-pushed the renovate/major-third-party-deps branch from 75a73a5 to b3664f4 Compare June 3, 2026 01:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants