Skip to content
Snippets Groups Projects
Unverified Commit 1e52768d authored by Matt Morris's avatar Matt Morris Committed by GitHub
Browse files

build: support `python3=3.9,<4.0` for `llama-index-vector-stores-databricks` (#17937)


* build: support `python3=3.9,<4.0` for `llama-index-vector-stores-databricks`

Signed-off-by: default avatarthemattmorris <matt.morris114@gmail.com>

* build: bump `llama-index-vector-stores-databricks` minor version

Signed-off-by: default avatarthemattmorris <matt.morris114@gmail.com>

---------

Signed-off-by: default avatarthemattmorris <matt.morris114@gmail.com>
parent 107749af
No related branches found
No related tags found
No related merge requests found
...@@ -6,13 +6,7 @@ Supports Delta Sync indexes and Direct Access indexes in Databricks Vector Searc ...@@ -6,13 +6,7 @@ Supports Delta Sync indexes and Direct Access indexes in Databricks Vector Searc
import json import json
import logging import logging
from typing import ( from typing import Any, List, Dict, Optional, cast
Any,
List,
Dict,
Optional,
cast,
)
from enum import Enum from enum import Enum
from databricks.vector_search.client import VectorSearchIndex from databricks.vector_search.client import VectorSearchIndex
......
...@@ -18,7 +18,7 @@ DatabricksVectorSearch = "NickhilN" ...@@ -18,7 +18,7 @@ DatabricksVectorSearch = "NickhilN"
disallow_untyped_defs = true disallow_untyped_defs = true
exclude = ["_static", "build", "examples", "notebooks", "venv"] exclude = ["_static", "build", "examples", "notebooks", "venv"]
ignore_missing_imports = true ignore_missing_imports = true
python_version = "3.8" python_version = "3.9"
[tool.poetry] [tool.poetry]
authors = ["Alberto Da Costa <alberto@bamelevate.com>", "Nickhil Nabar <nickhil@bamelevate.com"] authors = ["Alberto Da Costa <alberto@bamelevate.com>", "Nickhil Nabar <nickhil@bamelevate.com"]
...@@ -26,10 +26,10 @@ description = "llama-index vector_stores databricks vector search integration" ...@@ -26,10 +26,10 @@ description = "llama-index vector_stores databricks vector search integration"
license = "MIT" license = "MIT"
name = "llama-index-vector-stores-databricks" name = "llama-index-vector-stores-databricks"
readme = "README.md" readme = "README.md"
version = "0.3.0" version = "0.4.0"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.9,<3.12" python = ">=3.9,<4.0"
databricks-vectorsearch = "^0.21" databricks-vectorsearch = "^0.21"
llama-index-core = "^0.12.0" llama-index-core = "^0.12.0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment