Skip to content

Commit

Permalink
fix: version requirement too strict for sqlmodel
Browse files Browse the repository at this point in the history
Previous caret version requirement `^0.0.21` only allows version >=0.0.21, <0.0.22 and seems too strict. Changing to `>=0.0.21, <0.1.0` to allow newer versions.

Ref to Poetry documentation: [Caret requirements - Dependency specification](https://python-poetry.org/docs/dependency-specification/#caret-requirements)
> 0.0.x is not considered compatible with any other version.
  • Loading branch information
jwang-paradise committed Oct 29, 2024
1 parent 471b785 commit 1813e1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ cattrs = "^23.2.3"
openai = "^1.51.0"
anthropic = { version = "^0.34.2", optional = true }
groq = { version = "^0.11.0", optional = true }
sqlmodel = "^0.0.21"
sqlmodel = ">=0.0.21, <0.1.0"
uvicorn = "^0.30.3"
requests = "^2.32.3"
typing-extensions = "^4.12.2"
Expand Down

0 comments on commit 1813e1e

Please sign in to comment.