mirror of
https://github.com/qdrant/fastembed.git
synced 2026-07-23 11:20:51 -05:00
fix: fix onnxruntime 1.24, uncap pillow (#611)
* fix: fix onnxruntime 1.24, uncap pillow * fix: fix python3.10 onnxruntime version * fix: fix onnxruntime for 3.14, update onnx dep
This commit is contained in:
1643
poetry.lock
generated
1643
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -13,15 +13,17 @@ keywords = ["vector", "embedding", "neural", "search", "qdrant", "sentence-trans
|
||||
[tool.poetry.dependencies]
|
||||
python = ">=3.10.0"
|
||||
numpy = [
|
||||
{ version = ">=1.21,<2.3.0", python = ">=3.10,<3.11" },
|
||||
{ version = ">=1.21", python = ">=3.11,<3.12" },
|
||||
{ version = ">=1.26", python = ">=3.12,<3.13" },
|
||||
{ version = ">=2.1.0", python = ">=3.13,<3.14" },
|
||||
{ version = ">=1.21,<2.3.0", python = "3.10" },
|
||||
{ version = ">=1.21", python = "3.11" },
|
||||
{ version = ">=1.26", python = "3.12" },
|
||||
{ version = ">=2.1.0", python = "3.13" },
|
||||
{ version = ">=2.3.0", python = ">=3.14" },
|
||||
]
|
||||
onnxruntime = [
|
||||
{ version = ">1.20.0", python = ">=3.13" },
|
||||
{ version = ">=1.17.0,!=1.20.0", python = ">=3.10,<3.13" },
|
||||
{ version = ">=1.17.0,!=1.20.0,<1.24", python = "3.10" },
|
||||
{ version = ">=1.17.0,!=1.20.0,!=1.24.0,!=1.24.1", python = ">=3.11,<3.13" },
|
||||
{ version = ">1.21.0,!=1.24.0,!=1.24.1", python = "3.13" },
|
||||
{ version = ">=1.24.2", python = ">=3.14" },
|
||||
]
|
||||
tqdm = "^4.66"
|
||||
requests = "^2.31"
|
||||
@@ -29,9 +31,9 @@ tokenizers = ">=0.15,<1.0"
|
||||
huggingface-hub = ">=0.20,<2.0"
|
||||
loguru = "^0.7.2"
|
||||
pillow = [
|
||||
{ version = ">=10.3.0,<11.0", python = "<3.10" },
|
||||
{ version = ">=10.3.0,<12.0", python = ">=3.10,<3.13" },
|
||||
{ version = ">=11.0.0,<12.0", python = ">=3.13" },
|
||||
{ version = ">=10.3.0,<13.0", python = ">=3.10,<3.13" },
|
||||
{ version = ">=11.0.0,<13.0", python = "3.13" },
|
||||
{ version = ">=12.0.0,<13.0", python = ">=3.14" },
|
||||
]
|
||||
mmh3 = ">=4.1.0,<6.0.0"
|
||||
py-rust-stemmers = "^0.1.0"
|
||||
@@ -44,8 +46,9 @@ ruff = ">=0.3.1,<1.0"
|
||||
notebook = ">=7.0.2"
|
||||
pre-commit = "^3.6.2"
|
||||
onnx = [
|
||||
{ version = ">=1.15.0", python = "<3.13" },
|
||||
{ version = ">=1.18.0", python = ">=3.13" },
|
||||
{ version = ">=1.15.0", python = ">=3.10,<3.13" },
|
||||
{ version = ">=1.18.0", python = "3.13" },
|
||||
{ version = ">=1.20.0", python = ">=3.14" },
|
||||
]
|
||||
|
||||
[tool.poetry.group.docs.dependencies]
|
||||
|
||||
Reference in New Issue
Block a user