-
Notifications
You must be signed in to change notification settings - Fork 3.2k
fix(deps): update dependency websockets to v16 #5833
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,7 +33,7 @@ classifiers = [ | |
| ] | ||
| dependencies = [ | ||
| "livekit-agents[codecs]>=1.5.14", | ||
| "websockets>=13.1,<16.0", | ||
| "websockets>=16,<16.1", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π΄ websockets 16 removes The dependency is bumped to Verification showing the breakage with websockets 16.0
The fix is to add Prompt for agentsWas this helpful? React with π or π to provide feedback. |
||
| ] | ||
|
|
||
| [project.urls] | ||
|
|
||
There was a problem hiding this comment.
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.tomlwas changed to requirewebsockets>=16,<16.1, but the shareduv.lockfile was not regenerated. The lock file still resolves websockets to version 15.0.1 and records the old specifier>=13.1,<16.0forlivekit-plugins-gnani. This meansuv syncwill 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:And websockets is resolved globally to 15.0.1, which is incompatible with the new
>=16,<16.1requirement.Prompt for agents
Was this helpful? React with π or π to provide feedback.