File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " tiledb-vector-search"
3- version = " 0.0.14"
4- # dynamic = ["version"]
3+ dynamic = [" version" ]
54description = " TileDB Vector Search Python client"
65license = { text = " MIT" }
76readme = " README.md"
@@ -19,7 +18,7 @@ classifiers = [
1918]
2019
2120dependencies = [
22- " tiledb-cloud>=0.10.24 " ,
21+ " tiledb-cloud>=0.11 " ,
2322 " tiledb>=0.23.1" ,
2423 " typing-extensions" , # for tiledb-cloud indirect, x-ref https://github.com/TileDB-Inc/TileDB-Cloud-Py/pull/428
2524 " scikit-learn" ,
@@ -47,7 +46,7 @@ zip-safe = false
4746
4847[tool .setuptools_scm ]
4948root = " ../.."
50- # write_to = "apis/python/src/tiledb/vector_search/version.py"
49+ write_to = " apis/python/src/tiledb/vector_search/version.py"
5150
5251[tool .ruff ]
5352extend-select = [" I" ]
Original file line number Diff line number Diff line change 1212 validate_top_k )
1313from .storage_formats import STORAGE_VERSION , storage_formats
1414
15+ try :
16+ from tiledb .vector_search .version import version as __version__
17+ except ImportError :
18+ __version__ = "0.0.0.local"
19+
1520__all__ = [
1621 "FlatIndex" ,
1722 "IVFFlatIndex" ,
You can’t perform that action at this time.
0 commit comments