diff --git a/llama-index-integrations/embeddings/llama-index-embeddings-mistralai/pyproject.toml b/llama-index-integrations/embeddings/llama-index-embeddings-mistralai/pyproject.toml index 8096d01f7a5665bd32e69f44d9eabe42fa403a67..2045bfe0a1a09e72d37655f8baef6103558c0e1c 100644 --- a/llama-index-integrations/embeddings/llama-index-embeddings-mistralai/pyproject.toml +++ b/llama-index-integrations/embeddings/llama-index-embeddings-mistralai/pyproject.toml @@ -27,12 +27,12 @@ exclude = ["**/BUILD"] license = "MIT" name = "llama-index-embeddings-mistralai" readme = "README.md" -version = "0.1.3" +version = "0.1.4" [tool.poetry.dependencies] -python = ">=3.8.1,<4.0" +python = ">=3.9,<4.0" llama-index-core = "^0.10.1" -mistralai = "^0.0.11" +mistralai = ">=0.1.3" [tool.poetry.group.dev.dependencies] ipython = "8.10.0" diff --git a/llama-index-integrations/embeddings/llama-index-embeddings-mistralai/tests/BUILD b/llama-index-integrations/embeddings/llama-index-embeddings-mistralai/tests/BUILD index dabf212d7e7162849c24a733909ac4f645d75a31..619cac15ff840dc1548d68cd4c394d33e65cb2d1 100644 --- a/llama-index-integrations/embeddings/llama-index-embeddings-mistralai/tests/BUILD +++ b/llama-index-integrations/embeddings/llama-index-embeddings-mistralai/tests/BUILD @@ -1 +1,3 @@ -python_tests() +python_tests( + interpreter_constraints=["==3.9.*", "==3.10.*"], +) diff --git a/llama-index-integrations/llms/llama-index-llms-mistralai/pyproject.toml b/llama-index-integrations/llms/llama-index-llms-mistralai/pyproject.toml index 7391511e58a142a410180926d96f39f25fe55039..d538db4ae37c240b50bcb4b91d99ef219abc7f60 100644 --- a/llama-index-integrations/llms/llama-index-llms-mistralai/pyproject.toml +++ b/llama-index-integrations/llms/llama-index-llms-mistralai/pyproject.toml @@ -27,12 +27,12 @@ exclude = ["**/BUILD"] license = "MIT" name = "llama-index-llms-mistralai" readme = "README.md" -version = "0.1.4" +version = "0.1.5" [tool.poetry.dependencies] -python = ">=3.8.1,<4.0" +python = ">=3.9,<4.0" llama-index-core = "^0.10.1" -mistralai = "^0.0.11" +mistralai = ">=0.1.3" [tool.poetry.group.dev.dependencies] ipython = "8.10.0" diff --git a/llama-index-integrations/llms/llama-index-llms-mistralai/tests/BUILD b/llama-index-integrations/llms/llama-index-llms-mistralai/tests/BUILD index dabf212d7e7162849c24a733909ac4f645d75a31..619cac15ff840dc1548d68cd4c394d33e65cb2d1 100644 --- a/llama-index-integrations/llms/llama-index-llms-mistralai/tests/BUILD +++ b/llama-index-integrations/llms/llama-index-llms-mistralai/tests/BUILD @@ -1 +1,3 @@ -python_tests() +python_tests( + interpreter_constraints=["==3.9.*", "==3.10.*"], +)