From e3ea5cf9b9dd0b359dfd1fa69f67c559312e316a Mon Sep 17 00:00:00 2001 From: Rob Meng Date: Sat, 16 Nov 2024 14:57:52 -0500 Subject: [PATCH] chore: bump lance to 0.19.3 (#1839) --- Cargo.toml | 16 ++++++++-------- python/pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 971c8e46..3ee7c0d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,15 +21,15 @@ categories = ["database-implementations"] rust-version = "1.80.0" # TODO: lower this once we upgrade Lance again. [workspace.dependencies] -lance = { "version" = "=0.19.2", "features" = [ +lance = { "version" = "=0.19.3", "features" = [ "dynamodb", -]} -lance-index = "=0.19.2" -lance-linalg = "=0.19.2" -lance-table = "=0.19.2" -lance-testing = "=0.19.2" -lance-datafusion = "=0.19.2" -lance-encoding = "=0.19.2" +], git = "https://github.com/lancedb/lance.git", tag = "v0.19.3-beta.1" } +lance-index = { version = "=0.19.3", git = "https://github.com/lancedb/lance.git", tag = "v0.19.3-beta.1" } +lance-linalg = { version = "=0.19.3", git = "https://github.com/lancedb/lance.git", tag = "v0.19.3-beta.1" } +lance-table = { version = "=0.19.3", git = "https://github.com/lancedb/lance.git", tag = "v0.19.3-beta.1" } +lance-testing = { version = "=0.19.3", git = "https://github.com/lancedb/lance.git", tag = "v0.19.3-beta.1" } +lance-datafusion = { version = "=0.19.3", git = "https://github.com/lancedb/lance.git", tag = "v0.19.3-beta.1" } +lance-encoding = { version = "=0.19.3", git = "https://github.com/lancedb/lance.git", tag = "v0.19.3-beta.1" } # 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 66b76fb8..205a3f9a 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", + "pylance==0.19.3b1", "tqdm>=4.27.0", "pydantic>=1.10", "packaging",