Skip to content

Commit 6fa9d54

Browse files
scale-ballenclaude
andcommitted
fix: replace temporalio[opentelemetry] extra with explicit opentelemetry deps
Using the opentelemetry extra on the temporalio specifier caused uv to resolve a different dependency graph in tutorial environments (uv run --with wheel), which broke the _JSONTypeConverterUnhandled import used by scale-gp at worker startup time. Listing opentelemetry-api and opentelemetry-sdk as explicit direct dependencies keeps the same packages in the wheel while letting temporalio resolve independently in tutorial envs — matching the pre-existing resolution that scale-gp expects. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 03fadf7 commit 6fa9d54

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ dependencies = [
2727
"pyyaml>=6.0.2,<7",
2828
"jsonschema>=4.23.0,<5",
2929
"jsonref>=1.1.0,<2",
30-
"temporalio[opentelemetry]>=1.18.2,<2",
30+
"temporalio>=1.18.2,<2",
31+
"opentelemetry-api>=1.11.1,<2",
32+
"opentelemetry-sdk>=1.11.1,<2",
3133
"aiohttp>=3.10.10,<4",
3234
"redis>=5.2.0,<6",
3335
"litellm>=1.66.0,<2",

uv.lock

Lines changed: 6 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)