From 343e274ea5713b0172b420ea0566b1c995a0d795 Mon Sep 17 00:00:00 2001 From: Will Jones Date: Fri, 29 Sep 2023 09:04:49 -0700 Subject: [PATCH] fix: define minimum dependency versions (#515) Closes #513 For each of these, I found the minimum version that would allow the unit tests to pass. --- python/pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 56deca36..e785322f 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,12 +3,12 @@ name = "lancedb" version = "0.2.5" dependencies = [ "pylance==0.7.4", - "ratelimiter", - "retry", - "tqdm", + "ratelimiter~=1.0", + "retry>=0.9.2", + "tqdm>=4.1.0", "aiohttp", - "pydantic", - "attrs", + "pydantic>=1.10", + "attrs>=21.3.0", "semver>=3.0", "cachetools" ]