From f4c104fff5d5c6035918cf7614070b5af7c69f03 Mon Sep 17 00:00:00 2001 From: George Panchuk Date: Sat, 15 Feb 2025 21:03:48 +0100 Subject: [PATCH] fix: fix poetry version constraint bug --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2415903f..3a41560a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,10 +16,10 @@ keywords = ["vector", "search", "neural", "matching", "client"] python = ">=3.9" httpx = { version = ">=0.20.0", extras = ["http2"] } numpy = [ + { version = ">=2.1.0", python = ">=3.13" }, { version = ">=1.21,<2.1.0", python = "<3.10" }, { version = ">=1.21", python = ">=3.10,<3.12" }, { version = ">=1.26", python = ">=3.12,<3.13" }, - { version = ">=2.1.0", python = ">=3.13" } ] pydantic = ">=1.10.8" grpcio = { version = ">=1.41.0", allow-prereleases = true }