mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-03 10:22:56 +00:00
Compare commits
3 Commits
rmeng/0120
...
python-v0.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
11fcdb1194 | ||
|
|
95a5a0d713 | ||
|
|
c3043a54c6 |
12
Cargo.toml
12
Cargo.toml
@@ -4,7 +4,7 @@ members = [
|
|||||||
"rust/lancedb",
|
"rust/lancedb",
|
||||||
"nodejs",
|
"nodejs",
|
||||||
"python",
|
"python",
|
||||||
"java/core/lancedb-jni"
|
"java/core/lancedb-jni",
|
||||||
]
|
]
|
||||||
# Python package needs to be built by maturin.
|
# Python package needs to be built by maturin.
|
||||||
exclude = ["python"]
|
exclude = ["python"]
|
||||||
@@ -20,11 +20,11 @@ keywords = ["lancedb", "lance", "database", "vector", "search"]
|
|||||||
categories = ["database-implementations"]
|
categories = ["database-implementations"]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
lance = { "version" = "=0.12.0", "features" = ["dynamodb"] }
|
lance = { "version" = "=0.12.1", "features" = ["dynamodb"] }
|
||||||
lance-index = { "version" = "=0.12.0" }
|
lance-index = { "version" = "=0.12.1" }
|
||||||
lance-linalg = { "version" = "=0.12.0" }
|
lance-linalg = { "version" = "=0.12.1" }
|
||||||
lance-testing = { "version" = "=0.12.0" }
|
lance-testing = { "version" = "=0.12.1" }
|
||||||
lance-datafusion = { "version" = "=0.12.0" }
|
lance-datafusion = { "version" = "=0.12.1" }
|
||||||
# Note that this one does not include pyarrow
|
# Note that this one does not include pyarrow
|
||||||
arrow = { version = "51.0", optional = false }
|
arrow = { version = "51.0", optional = false }
|
||||||
arrow-array = "51.0"
|
arrow-array = "51.0"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
[tool.bumpversion]
|
[tool.bumpversion]
|
||||||
current_version = "0.8.1"
|
current_version = "0.8.2"
|
||||||
parse = """(?x)
|
parse = """(?x)
|
||||||
(?P<major>0|[1-9]\\d*)\\.
|
(?P<major>0|[1-9]\\d*)\\.
|
||||||
(?P<minor>0|[1-9]\\d*)\\.
|
(?P<minor>0|[1-9]\\d*)\\.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "lancedb-python"
|
name = "lancedb-python"
|
||||||
version = "0.8.1"
|
version = "0.8.2"
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
description = "Python bindings for LanceDB"
|
description = "Python bindings for LanceDB"
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ name = "lancedb"
|
|||||||
# version in Cargo.toml
|
# version in Cargo.toml
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"deprecation",
|
"deprecation",
|
||||||
"pylance==0.12.0",
|
"pylance==0.12.1",
|
||||||
"ratelimiter~=1.0",
|
"ratelimiter~=1.0",
|
||||||
"requests>=2.31.0",
|
"requests>=2.31.0",
|
||||||
"retry>=0.9.2",
|
"retry>=0.9.2",
|
||||||
|
|||||||
Reference in New Issue
Block a user