Skip to content

Commit

Permalink
fix import and increase version (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
anakin87 authored Dec 5, 2023
1 parent 3999dcc commit 270eb6b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion integrations/chroma/src/chroma_haystack/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-present deepset GmbH <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
__version__ = "0.8.0"
__version__ = "0.8.1"
2 changes: 1 addition & 1 deletion integrations/chroma/src/chroma_haystack/document_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import numpy as np
from chromadb.api.types import GetResult, QueryResult, validate_where, validate_where_document
from haystack.dataclasses import Document
from haystack.document_stores.protocols import DuplicatePolicy
from haystack.document_stores.protocol import DuplicatePolicy

from chroma_haystack.errors import ChromaDocumentStoreFilterError
from chroma_haystack.utils import get_embedding_function
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-present deepset GmbH <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
__version__ = "0.1.0"
__version__ = "0.1.1"
2 changes: 1 addition & 1 deletion integrations/elasticsearch/tests/test_document_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from elasticsearch.exceptions import BadRequestError # type: ignore[import-not-found]
from haystack.dataclasses.document import Document
from haystack.document_stores.errors import DocumentStoreError, DuplicateDocumentError
from haystack.document_stores.protocols import DuplicatePolicy
from haystack.document_stores.protocol import DuplicatePolicy
from haystack.testing.document_store import DocumentStoreBaseTests

from elasticsearch_haystack.document_store import ElasticsearchDocumentStore
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-present deepset GmbH <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
__version__ = "0.1.0"
__version__ = "0.1.1"
2 changes: 1 addition & 1 deletion integrations/opensearch/tests/test_document_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import pytest
from haystack.dataclasses.document import Document
from haystack.document_stores.errors import DocumentStoreError, DuplicateDocumentError
from haystack.document_stores.protocols import DuplicatePolicy
from haystack.document_stores.protocol import DuplicatePolicy
from haystack.testing.document_store import DocumentStoreBaseTests
from opensearchpy.exceptions import RequestError

Expand Down

0 comments on commit 270eb6b

Please sign in to comment.