From 35c535aae32cf66cba982989d44fed5904049ac8 Mon Sep 17 00:00:00 2001 From: Anush Date: Mon, 17 Jun 2024 23:33:09 +0530 Subject: [PATCH] chore: Pin numpy <2 (#278) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 17443b74..c77e459a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fastembed" -version = "0.3.0" +version = "0.3.1" description = "Fast, light, accurate library built for retrieval embedding generation" authors = ["Qdrant Team ", "NirantK "] license = "Apache License" @@ -20,8 +20,8 @@ tokenizers = ">=0.15,<1.0" huggingface-hub = ">=0.20,<1.0" loguru = "^0.7.2" numpy = [ - { version = ">=1.21", python = "<3.12" }, - { version = ">=1.26", python = ">=3.12" } + { version = ">=1.21, <2", python = "<3.12" }, + { version = ">=1.26, <2", python = ">=3.12" } ] pillow = "^10.3.0" snowballstemmer = "^2.2.0"