diff --git a/Cargo.toml b/Cargo.toml index 3107fb8c..7f27b4f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,16 +21,16 @@ categories = ["database-implementations"] rust-version = "1.80.0" # TODO: lower this once we upgrade Lance again. [workspace.dependencies] -lance = { "version" = "=0.20.0", "features" = [ +lance = { "version" = "=0.21.0", "features" = [ "dynamodb", -] } -lance-io = "0.20.0" -lance-index = "0.20.0" -lance-linalg = "0.20.0" -lance-table = "0.20.0" -lance-testing = "0.20.0" -lance-datafusion = "0.20.0" -lance-encoding = "0.20.0" +], git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" } +lance-io = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" } +lance-index = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" } +lance-linalg = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" } +lance-table = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" } +lance-testing = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" } +lance-datafusion = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" } +lance-encoding = { version = "=0.21.0", git = "https://github.com/lancedb/lance.git", tag = "v0.21.0-beta.2" } # 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 a05e5bc7..93d776b6 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,7 +3,7 @@ name = "lancedb" # version in Cargo.toml dependencies = [ "deprecation", - "pylance==0.20.0", + "pylance==0.21.0b2", "tqdm>=4.27.0", "pydantic>=1.10", "packaging",