mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-24 13:59:58 +00:00
Compare commits
2 Commits
python-v0.
...
yang/upgra
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d8d3d712d6 | ||
|
|
a98ea8bb53 |
14
Cargo.toml
14
Cargo.toml
@@ -20,12 +20,14 @@ keywords = ["lancedb", "lance", "database", "vector", "search"]
|
|||||||
categories = ["database-implementations"]
|
categories = ["database-implementations"]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
lance = { "version" = "=0.16.1", "features" = ["dynamodb"] }
|
lance = { "version" = "=0.17.0", "features" = [
|
||||||
lance-index = { "version" = "=0.16.1" }
|
"dynamodb",
|
||||||
lance-linalg = { "version" = "=0.16.1" }
|
], git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.2" }
|
||||||
lance-testing = { "version" = "=0.16.1" }
|
lance-index = { "version" = "=0.17.0", git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.2" }
|
||||||
lance-datafusion = { "version" = "=0.16.1" }
|
lance-linalg = { "version" = "=0.17.0", git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.2" }
|
||||||
lance-encoding = { "version" = "=0.16.1" }
|
lance-testing = { "version" = "=0.17.0", git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.2" }
|
||||||
|
lance-datafusion = { "version" = "=0.17.0", git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.2" }
|
||||||
|
lance-encoding = { "version" = "=0.17.0", git = "https://github.com/lancedb/lance.git", tag = "v0.17.0-beta.2" }
|
||||||
# Note that this one does not include pyarrow
|
# Note that this one does not include pyarrow
|
||||||
arrow = { version = "52.2", optional = false }
|
arrow = { version = "52.2", optional = false }
|
||||||
arrow-array = "52.2"
|
arrow-array = "52.2"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ name = "lancedb"
|
|||||||
# version in Cargo.toml
|
# version in Cargo.toml
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"deprecation",
|
"deprecation",
|
||||||
"pylance==0.16.1",
|
"pylance==0.17.0-beta.2",
|
||||||
"ratelimiter~=1.0",
|
"ratelimiter~=1.0",
|
||||||
"requests>=2.31.0",
|
"requests>=2.31.0",
|
||||||
"retry>=0.9.2",
|
"retry>=0.9.2",
|
||||||
|
|||||||
@@ -2781,7 +2781,7 @@ mod tests {
|
|||||||
.get_index_type(index_uuid)
|
.get_index_type(index_uuid)
|
||||||
.await
|
.await
|
||||||
.unwrap(),
|
.unwrap(),
|
||||||
Some("IVF".to_string())
|
Some("IVF_PQ".to_string())
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
table
|
table
|
||||||
|
|||||||
Reference in New Issue
Block a user