Skip to content

Commit 0d0c8b1

Browse files
committed
fix: fix problem appeared in poetry 2.1.0
1 parent de4ecb4 commit 0d0c8b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ keywords = ["vector", "embedding", "neural", "search", "qdrant", "sentence-trans
1313
[tool.poetry.dependencies]
1414
python = ">=3.9.0"
1515
numpy = [
16-
{ version = ">=1.21,<2.1.0", python = "<3.10" },
1716
{ version = ">=1.21", python = ">=3.10,<3.12" },
1817
{ version = ">=1.26", python = ">=3.12,<3.13" },
19-
{ version = ">=2.1.0", python = ">=3.13" }
18+
{ version = ">=2.1.0", python = ">=3.13" },
19+
{ version = ">=1.21,<2.1.0", python = "<3.10" },
2020
]
2121
onnxruntime = [
22+
{ version = ">1.20.0", python = ">=3.13" },
2223
{ version = ">=1.17.0,<1.20.0", python = "<3.10" },
2324
{ version = ">=1.17.0,!=1.20.0", python = ">=3.10,<3.13" },
24-
{ version = ">1.20.0", python = ">=3.13" }
2525
]
2626
tqdm = "^4.66"
2727
requests = "^2.31"

0 commit comments

Comments
 (0)