From d8c217b47d38f6de94b3607d38732ffcc170d003 Mon Sep 17 00:00:00 2001 From: Rob Meng Date: Wed, 13 Nov 2024 23:23:02 -0500 Subject: [PATCH] chore: bump lance to 0.19.2 (#1829) --- Cargo.toml | 14 +++++++------- python/pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f37c3fba..7122cdf2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,13 +23,13 @@ rust-version = "1.80.0" # TODO: lower this once we upgrade Lance again. [workspace.dependencies] lance = { "version" = "=0.19.2", "features" = [ "dynamodb", -], git = "https://github.com/lancedb/lance.git", tag = "v0.19.2-beta.3" } -lance-index = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2-beta.3" } -lance-linalg = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2-beta.3" } -lance-table = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2-beta.3" } -lance-testing = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2-beta.3" } -lance-datafusion = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2-beta.3" } -lance-encoding = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2-beta.3" } +], git = "https://github.com/lancedb/lance.git", tag = "v0.19.2" } +lance-index = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2" } +lance-linalg = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2" } +lance-table = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2" } +lance-testing = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2" } +lance-datafusion = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2" } +lance-encoding = { "version" = "=0.19.2", git = "https://github.com/lancedb/lance.git", tag = "v0.19.2" } # 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 86be43a1..66b76fb8 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ name = "lancedb" dependencies = [ "deprecation", "nest-asyncio~=1.0", - "pylance==0.19.2-beta.3", + "pylance==0.19.2", "tqdm>=4.27.0", "pydantic>=1.10", "packaging",