From 3b2caee9dcf18dc05481b300765e0cc2b31070d4 Mon Sep 17 00:00:00 2001 From: whwkong <whwkong@users.noreply.github.com> Date: Thu, 21 Mar 2024 19:28:10 -0400 Subject: [PATCH] [Bug Fix]: ModuleNotFoundError: No module named 'llama_index.storage.kvstore' (#12157) --- .../llama-index-storage-docstore-postgres/pyproject.toml | 3 ++- .../llama-index-storage-index-store-postgres/pyproject.toml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/llama-index-integrations/storage/docstore/llama-index-storage-docstore-postgres/pyproject.toml b/llama-index-integrations/storage/docstore/llama-index-storage-docstore-postgres/pyproject.toml index 16c2cb3959..3e6d29dd8d 100644 --- a/llama-index-integrations/storage/docstore/llama-index-storage-docstore-postgres/pyproject.toml +++ b/llama-index-integrations/storage/docstore/llama-index-storage-docstore-postgres/pyproject.toml @@ -27,11 +27,12 @@ exclude = ["**/BUILD"] license = "MIT" name = "llama-index-storage-docstore-postgres" readme = "README.md" -version = "0.1.2" +version = "0.1.3" [tool.poetry.dependencies] python = ">=3.8.1,<4.0" llama-index-core = "^0.10.1" +llama-index-storage-kvstore-postgres = "^0.1.2" [tool.poetry.group.dev.dependencies] ipython = "8.10.0" diff --git a/llama-index-integrations/storage/index_store/llama-index-storage-index-store-postgres/pyproject.toml b/llama-index-integrations/storage/index_store/llama-index-storage-index-store-postgres/pyproject.toml index a8d9db6b45..898d146354 100644 --- a/llama-index-integrations/storage/index_store/llama-index-storage-index-store-postgres/pyproject.toml +++ b/llama-index-integrations/storage/index_store/llama-index-storage-index-store-postgres/pyproject.toml @@ -27,11 +27,12 @@ exclude = ["**/BUILD"] license = "MIT" name = "llama-index-storage-index-store-postgres" readme = "README.md" -version = "0.1.2" +version = "0.1.3" [tool.poetry.dependencies] python = ">=3.8.1,<4.0" llama-index-core = "^0.10.1" +llama-index-storage-kvstore-postgres = "^0.1.2" [tool.poetry.group.dev.dependencies] ipython = "8.10.0" -- GitLab