@@ -11,18 +11,24 @@ repository = "https://github.com/qdrant/fastembed"
11
11
keywords = [" vector" , " embedding" , " neural" , " search" , " qdrant" , " sentence-transformers" ]
12
12
13
13
[tool .poetry .dependencies ]
14
- python = " >=3.9.0,<3.13"
15
- onnx = " ^1.15.0"
16
- onnxruntime = " >=1.17.0,<1.20.0"
14
+ python = " >=3.9.0"
15
+ onnx = " >=1.15.0"
16
+ numpy = [
17
+ { version = " >=1.21,<2.1.0" , python = " <3.10" },
18
+ { version = " >=1.21" , python = " >=3.10,<3.12" },
19
+ { version = " >=1.26" , python = " >=3.12,<3.13" },
20
+ { version = " >=2.1.0" , python = " >=3.13" }
21
+ ]
22
+ onnxruntime = [
23
+ { version = " >=1.17.0,<1.20.0" , python = " <3.10" },
24
+ { version = " >=1.17.0,!=1.20.0" , python = " >=3.10,<3.13" },
25
+ { version = " >1.20.0" , python = " >=3.13" }
26
+ ]
17
27
tqdm = " ^4.66"
18
28
requests = " ^2.31"
19
29
tokenizers = " >=0.15,<1.0"
20
30
huggingface-hub = " >=0.20,<1.0"
21
31
loguru = " ^0.7.2"
22
- numpy = [
23
- { version = " >=1.21" , python = " <3.12" },
24
- { version = " >=1.26" , python = " >=3.12" }
25
- ]
26
32
pillow = " ^10.3.0"
27
33
mmh3 = " ^4.1.0"
28
34
py-rust-stemmers = " ^0.1.0"
0 commit comments