Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions livekit-agents/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ dependencies = [
"numpy>=1.26.0",
"pydantic>=2.0,<3",
"nest-asyncio>=1.6.0",
"opentelemetry-api~=1.39.0",
"opentelemetry-sdk~=1.39.0",
"opentelemetry-exporter-otlp~=1.39.0",
"opentelemetry-api~=1.43.0",
"opentelemetry-sdk~=1.43.0",
"opentelemetry-exporter-otlp~=1.43.0",
Comment on lines +48 to +50

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.

🔍 OpenTelemetry jump spans 4 minor versions — verify API compatibility

The opentelemetry packages were bumped from ~=1.39.0 to ~=1.43.0 at livekit-agents/pyproject.toml:48-50. This skips versions 1.40, 1.41, and 1.42. While the ~= operator constrains to >=1.43.0,<1.44.0, a 4-minor-version jump may include breaking changes in the OpenTelemetry SDK's internal APIs (e.g., changes to exporter configuration, span processor behavior, or metric instrument signatures). The telemetry code in livekit-agents/livekit/agents/telemetry/ should be verified against the 1.43 changelog to ensure no breaking changes affect the codebase.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

"prometheus-client>=0.22",
"openai>=2",
"aiofiles>=24",
"json-repair==0.60.1",
"json-repair==0.61.3",
"pyyaml>=6.0.3",
# Required by the deprecated rich CLI (`cli.run_app`); drop when it is removed.
"typer>=0.15.1",
Expand Down

@devin-ai-integration devin-ai-integration Bot Jun 16, 2026

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.

🔍 Lock file not regenerated after dependency changes

The uv.lock file was not updated as part of this PR (no diff in uv.lock). This means none of the three dependency changes (opentelemetry bump, onnxruntime constraint change, pytest bump) are reflected in the lock file. At uv.lock:3151, the turn-detector still shows specifier = ">=1.18,<1.24" and the opentelemetry entries will still reference 1.39.x versions. Running uv lock after merging is necessary, but it will fail due to the onnxruntime constraint conflict reported as BUG-0001.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies = [
"transformers>=4.47.1,!=4.57.2,!=4.57.3", # 4.57.2-4.57.3 have a bug with local_files_only=True (huggingface/transformers#42369)
"numpy>=1.26",
"onnxruntime>=1.18; python_version >= '3.11'",
"onnxruntime>=1.18,<1.24; python_version < '3.11'",
"onnxruntime>=1.27,<1.28; python_version < '3.11'",
"jinja2",
]

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ dev = [
"python-dotenv>=1.0.1",
"mypy",
"scikit-learn",
"pytest>=9.0.3,<9.1",
"pytest>=9.1.1,<9.2",
"ruff",
"pytest-asyncio>=0.25.3",
"pytest-asyncio-concurrent==0.5.2",
Expand Down
Loading