Skip to content

Commit 8b4cd23

Browse files
committed
Constrain langsmith to allow CI to pass
1 parent 913f6e0 commit 8b4cd23

2 files changed

Lines changed: 15 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,14 @@ cloud-export-to-parquet = [
7070
]
7171

7272
[tool.uv]
73-
constraint-dependencies = ["yarl!=1.24.0"]
73+
constraint-dependencies = [
74+
# langsmith 0.7.34 changed its aio_to_thread signature; temporalio.contrib.langsmith
75+
# 1.27.2 still patches the older signature, causing workflow task retries to hang CI.
76+
"langsmith<0.7.34",
77+
# yarl 1.24.0 was published without an sdist and only has cp310 wheels, so it cannot
78+
# install on the Python 3.14 CI jobs.
79+
"yarl!=1.24.0",
80+
]
7481

7582
[tool.hatch.metadata]
7683
allow-direct-references = true

uv.lock

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

0 commit comments

Comments
 (0)