Skip to content

Commit

Permalink
fix: fix poetry version constraint bug
Browse files Browse the repository at this point in the history
  • Loading branch information
joein committed Feb 15, 2025
1 parent cfe43ed commit f4c104f
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 @@ -16,10 +16,10 @@ keywords = ["vector", "search", "neural", "matching", "client"]
python = ">=3.9"
httpx = { version = ">=0.20.0", extras = ["http2"] }
numpy = [
{ version = ">=2.1.0", python = ">=3.13" },
{ version = ">=1.21,<2.1.0", python = "<3.10" },
{ version = ">=1.21", python = ">=3.10,<3.12" },
{ version = ">=1.26", python = ">=3.12,<3.13" },
{ version = ">=2.1.0", python = ">=3.13" }
]
pydantic = ">=1.10.8"
grpcio = { version = ">=1.41.0", allow-prereleases = true }
Expand Down

0 comments on commit f4c104f

Please sign in to comment.