From d6d9cb741530e3c79836ae1ebdc2a447fef5bf5f Mon Sep 17 00:00:00 2001 From: LuQQiu Date: Mon, 25 Nov 2024 16:15:44 -0800 Subject: [PATCH] feat: bump lance to 0.20.0b3 (#1882) Bump lance version. Upstream change log: https://github.com/lancedb/lance/releases/tag/v0.20.0-beta.3 --- Cargo.toml | 14 +++++++------- python/pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 76304f2d..4a4d667f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,13 +23,13 @@ rust-version = "1.80.0" # TO [workspace.dependencies] lance = { "version" = "=0.20.0", "features" = [ "dynamodb", -], git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.2" } -lance-index = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.2" } -lance-linalg = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.2" } -lance-table = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.2" } -lance-testing = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.2" } -lance-datafusion = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.2" } -lance-encoding = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.2" } +], git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.3" } +lance-index = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.3" } +lance-linalg = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.3" } +lance-table = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.3" } +lance-testing = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.3" } +lance-datafusion = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.3" } +lance-encoding = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.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 b96047d0..71c293f5 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,7 +3,7 @@ name = "lancedb" # version in Cargo.toml dependencies = [ "deprecation", - "pylance==0.20.0b2", + "pylance==0.20.0b3", "tqdm>=4.27.0", "pydantic>=1.10", "packaging",