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.
This commit is contained in:
Will Jones
2023-09-29 09:04:49 -07:00
committed by GitHub
parent a695fb8030
commit 343e274ea5

View File

@@ -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"
]