From a8568ddc72872052412202591447ce2e3cf5f25a Mon Sep 17 00:00:00 2001 From: Weston Pace Date: Mon, 24 Jun 2024 17:22:57 -0700 Subject: [PATCH] feat: upgrade to lance 0.13.0 (#1404) --- Cargo.toml | 12 +++++------- python/pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f8b1bacd..90a2cff6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,13 +20,11 @@ keywords = ["lancedb", "lance", "database", "vector", "search"] categories = ["database-implementations"] [workspace.dependencies] -lance = { "version" = "=0.12.2", "features" = [ - "dynamodb", -], git = "https://github.com/lancedb/lance.git", tag = "v0.12.2-beta.2" } -lance-index = { "version" = "=0.12.2", git = "https://github.com/lancedb/lance.git", tag = "v0.12.2-beta.2" } -lance-linalg = { "version" = "=0.12.2", git = "https://github.com/lancedb/lance.git", tag = "v0.12.2-beta.2" } -lance-testing = { "version" = "=0.12.2", git = "https://github.com/lancedb/lance.git", tag = "v0.12.2-beta.2" } -lance-datafusion = { "version" = "=0.12.2", git = "https://github.com/lancedb/lance.git", tag = "v0.12.2-beta.2" } +lance = { "version" = "=0.13.0", "features" = ["dynamodb"] } +lance-index = { "version" = "=0.13.0" } +lance-linalg = { "version" = "=0.13.0" } +lance-testing = { "version" = "=0.13.0" } +lance-datafusion = { "version" = "=0.13.0" } # Note that this one does not include pyarrow arrow = { version = "51.0", optional = false } arrow-array = "51.0" diff --git a/python/pyproject.toml b/python/pyproject.toml index 91a336e3..9bb832cb 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,7 +3,7 @@ name = "lancedb" # version in Cargo.toml dependencies = [ "deprecation", - "pylance==0.12.2-beta.2", + "pylance==0.13.0", "ratelimiter~=1.0", "requests>=2.31.0", "retry>=0.9.2",