Skip to content

Commit fc6f80b

Browse files
committed
fix: numpy dropped 3.10 as of 2.3.0
1 parent 2ba8990 commit fc6f80b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ keywords = ["vector", "embedding", "neural", "search", "qdrant", "sentence-trans
1313
[tool.poetry.dependencies]
1414
python = ">=3.9.0"
1515
numpy = [
16-
{ version = ">=1.21", python = ">=3.10,<3.12" },
17-
{ version = ">=1.26", python = ">=3.12,<3.13" },
18-
{ version = ">=2.1.0", python = ">=3.13" },
1916
{ version = ">=1.21,<2.1.0", python = "<3.10" },
17+
{ version = ">=1.21,<2.3.0", python = ">=3.10,<3.11" },
18+
{ version = ">=1.21", python = ">=3.11,<3.12" },
19+
{ version = ">=1.26", python = ">=3.12,<3.13" },
20+
{ version = ">=2.1.0", python = ">=3.13,<3.14" },
21+
{ version = ">=2.3.0", python = ">=3.14" },
2022
]
2123
onnxruntime = [
2224
{ version = ">=1.17.0,<1.20.0", python = "<3.10" },

0 commit comments

Comments
 (0)