mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-22 21:09:58 +00:00
chore: update lance dependency to v0.39.0 (#2766)
## Summary - bump Lance crates to v0.39.0 with ci/set_lance_version.py and refresh Cargo.lock - keep namespace feature set intact while moving off git dependencies - verified cargo clippy --workspace --tests --all-features -- -D warnings - ran cargo fmt --all ## References - https://github.com/lancedb/lance/releases/tag/v0.39.0
This commit is contained in:
@@ -55,7 +55,7 @@ def extract_features(line: str) -> list:
|
||||
match = re.search(r'"features"\s*=\s*\[\s*(.*?)\s*\]', line, re.DOTALL)
|
||||
if match:
|
||||
features_str = match.group(1)
|
||||
return [f.strip('"') for f in features_str.split(",") if len(f) > 0]
|
||||
return [f.strip().strip('"') for f in features_str.split(",") if f.strip()]
|
||||
return []
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user