Skip to content
Open
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [{ name = "Felix Su", email = "felix.su@scale.com" }]
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"agentex-sdk==0.4.18",
"agentex-sdk==0.9.3",
Copy link

Choose a reason for hiding this comment

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

Lock file not updated for SDK bump

The uv.lock file still pins agentex-sdk==0.4.18 (see uv.lock:32 and uv.lock:165), but pyproject.toml now requires ==0.9.3. This mismatch means uv sync will either fail with a version conflict or install the old 0.4.18 version, defeating the purpose of this upgrade. Please run uv lock (or uv sync) to regenerate the lock file and include the updated uv.lock in this PR.

Prompt To Fix With AI
This is a comment left during a code review.
Path: pyproject.toml
Line: 9

Comment:
**Lock file not updated for SDK bump**

The `uv.lock` file still pins `agentex-sdk==0.4.18` (see `uv.lock:32` and `uv.lock:165`), but `pyproject.toml` now requires `==0.9.3`. This mismatch means `uv sync` will either fail with a version conflict or install the old `0.4.18` version, defeating the purpose of this upgrade. Please run `uv lock` (or `uv sync`) to regenerate the lock file and include the updated `uv.lock` in this PR.

How can I resolve this? If you propose a fix, please make it concise.

"temporalio>=1.18.0",
]

Expand Down