From 397813f6a4ade6912c30cd3152d25b94855dc42b Mon Sep 17 00:00:00 2001 From: Lei Xu Date: Tue, 31 Dec 2024 15:34:27 -0800 Subject: [PATCH] chore: bump pylance to 0.21.1b1 (#1989) --- Cargo.toml | 18 +++++++++--------- python/pyproject.toml | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index eda85533..81b1ab10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,16 +21,16 @@ categories = ["database-implementations"] rust-version = "1.78.0" [workspace.dependencies] -lance = { "version" = "=0.21.0", "features" = [ +lance = { "version" = "=0.21.1", "features" = [ "dynamodb", -], git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.5" } -lance-io = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.5" } -lance-index = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.5" } -lance-linalg = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.5" } -lance-table = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.5" } -lance-testing = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.5" } -lance-datafusion = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.5" } -lance-encoding = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.5" } +], git = "https://github.com/lancedb/lance.git", tag = "v0.21.1-beta.1" } +lance-io = { version = "=0.21.1", git = "https://github.com/lancedb/lance.git", tag = "v0.21.1-beta.1" } +lance-index = { version = "=0.21.1", git = "https://github.com/lancedb/lance.git", tag = "v0.21.1-beta.1" } +lance-linalg = { version = "=0.21.1", git = "https://github.com/lancedb/lance.git", tag = "v0.21.1-beta.1" } +lance-table = { version = "=0.21.1", git = "https://github.com/lancedb/lance.git", tag = "v0.21.1-beta.1" } +lance-testing = { version = "=0.21.1", git = "https://github.com/lancedb/lance.git", tag = "v0.21.1-beta.1" } +lance-datafusion = { version = "=0.21.1", git = "https://github.com/lancedb/lance.git", tag = "v0.21.1-beta.1" } +lance-encoding = { version = "=0.21.1", git = "https://github.com/lancedb/lance.git", tag = "v0.21.1-beta.1" } # Note that this one does not include pyarrow arrow = { version = "53.2", optional = false } arrow-array = "53.2" diff --git a/python/pyproject.toml b/python/pyproject.toml index 7b09f453..62197bcd 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ name = "lancedb" dynamic = ["version"] dependencies = [ "deprecation", - "pylance==0.21.0b5", + "pylance==0.21.1b1", "tqdm>=4.27.0", "pydantic>=1.10", "packaging",