From a98ea8bb533621d818ee94d2a5180ee0c2d95e81 Mon Sep 17 00:00:00 2001 From: BubbleCal Date: Tue, 13 Aug 2024 15:15:25 +0800 Subject: [PATCH] chore: upgrade lance to 0.17.0-beta.3 Signed-off-by: BubbleCal --- Cargo.toml | 14 ++++++++------ python/pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 522342e8..2562d32e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,12 +20,14 @@ keywords = ["lancedb", "lance", "database", "vector", "search"] categories = ["database-implementations"] [workspace.dependencies] -lance = { "version" = "=0.16.1", "features" = ["dynamodb"] } -lance-index = { "version" = "=0.16.1" } -lance-linalg = { "version" = "=0.16.1" } -lance-testing = { "version" = "=0.16.1" } -lance-datafusion = { "version" = "=0.16.1" } -lance-encoding = { "version" = "=0.16.1" } +lance = { "version" = "=0.17.0", "features" = [ + "dynamodb", +], git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.3" } +lance-index = { "version" = "=0.17.0", git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.3" } +lance-linalg = { "version" = "=0.17.0", git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.3" } +lance-testing = { "version" = "=0.17.0", git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.3" } +lance-datafusion = { "version" = "=0.17.0", git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.3" } +lance-encoding = { "version" = "=0.17.0", git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.3" } # Note that this one does not include pyarrow arrow = { version = "52.2", optional = false } arrow-array = "52.2" diff --git a/python/pyproject.toml b/python/pyproject.toml index 9f48ad91..7421d8a0 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,7 +3,7 @@ name = "lancedb" # version in Cargo.toml dependencies = [ "deprecation", - "pylance==0.16.1", + "pylance==0.17.0-beta.3", "ratelimiter~=1.0", "requests>=2.31.0", "retry>=0.9.2",