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
27 changes: 19 additions & 8 deletions libs/infinity_emb/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libs/infinity_emb/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fastapi = {version = ">=0.103.2", optional=true}
orjson = {version = ">=3.9.8,!=3.10.0", optional=true}
prometheus-fastapi-instrumentator = {version = ">=6.1.0", optional=true}
uvicorn = {version = "^0.32.0", optional=true, extras = ["standard"]}
typer = {version = "^0.12.5", optional=true}
typer = {version = ">=0.20.0", optional=true}
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.

P2 The new constraint has no upper bound. While removing the caret was necessary to escape the broken 0.12.x line, an uncapped >=0.20.0 means any future major version of typer (e.g., a hypothetical 1.0 with breaking API changes) will satisfy the constraint. A loose upper cap like <2 preserves flexibility for all 0.x releases while guarding against unvetted major-version upgrades.

Suggested change
typer = {version = ">=0.20.0", optional=true}
typer = {version = ">=0.20.0,<2", optional=true}

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

pydantic = {version = ">=2.4.0,<3", optional=true}
posthog = {version = "*", optional=true}
# backend
Expand Down