diff --git a/Cargo.toml b/Cargo.toml index cbd99291..76304f2d 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.1" } -lance-index = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.1" } -lance-linalg = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.1" } -lance-table = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.1" } -lance-testing = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.1" } -lance-datafusion = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.1" } -lance-encoding = { version = "=0.20.0", git = "https://github.com/lancedb/lance.git", tag = "v0.20.0-beta.1" } +], 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" } # 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 c31d89a4..4ab18808 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ name = "lancedb" dependencies = [ "deprecation", "nest-asyncio~=1.0", - "pylance==0.20.0b1", + "pylance==0.20.0b2", "tqdm>=4.27.0", "pydantic>=1.10", "packaging", diff --git a/rust/lancedb/src/table.rs b/rust/lancedb/src/table.rs index 48a08913..11dfbb89 100644 --- a/rust/lancedb/src/table.rs +++ b/rust/lancedb/src/table.rs @@ -1325,7 +1325,7 @@ impl NativeTable { let (indices, mf) = futures::try_join!(dataset.load_indices(), dataset.latest_manifest())?; Ok(indices .iter() - .map(|i| VectorIndex::new_from_format(&mf, i)) + .map(|i| VectorIndex::new_from_format(&(mf.0), i)) .collect()) }