Skip to content
Closed
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 @@ -36,7 +36,7 @@ dependencies = [
"pytest-asyncio>=0.21.0",
"peewee>=3.18.2",
"backoff>=2.2.0",
"fireworks-ai==1.0.0a20",
"fireworks-ai>=1.0.0a20,<2",
Copy link

Choose a reason for hiding this comment

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

Lockfile not updated to match relaxed dependency specifier

Medium Severity

The uv.lock file still contains specifier = "==1.0.0a20" for fireworks-ai, which is inconsistent with the updated pyproject.toml specifier of >=1.0.0a20,<2. Without regenerating the lockfile, uv sync will either error on the mismatch or continue resolving the old pinned version, undermining the intent of the relaxed pin.

Fix in Cursor Fix in Web

"questionary>=2.0.0",
# Dependencies for vendored tau2 package
"toml>=0.10.0",
Expand Down
Loading