From 52b833a6d11271fe4cd11e2ee031a2187cb0e33a Mon Sep 17 00:00:00 2001 From: Stefano Fiorucci Date: Tue, 9 Apr 2024 15:13:48 +0200 Subject: [PATCH] fix haystack-ai pin (#649) --- integrations/astra/examples/requirements.txt | 2 +- integrations/mistral/pyproject.toml | 2 +- integrations/mongodb_atlas/pyproject.toml | 2 +- integrations/qdrant/pyproject.toml | 2 +- integrations/ragas/pyproject.toml | 2 +- integrations/uptrain/pyproject.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/integrations/astra/examples/requirements.txt b/integrations/astra/examples/requirements.txt index 21aec1397..710749bbe 100644 --- a/integrations/astra/examples/requirements.txt +++ b/integrations/astra/examples/requirements.txt @@ -1,4 +1,4 @@ -haystack-ai==2.0.0b4 +haystack-ai sentence_transformers==2.2.2 openai==1.6.1 astrapy>=0.7.7 \ No newline at end of file diff --git a/integrations/mistral/pyproject.toml b/integrations/mistral/pyproject.toml index 9550fea1e..cbbdb719d 100644 --- a/integrations/mistral/pyproject.toml +++ b/integrations/mistral/pyproject.toml @@ -21,7 +21,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] -dependencies = ["haystack-ai>=2.0.0b6"] +dependencies = ["haystack-ai"] [project.urls] Documentation = "https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/mistral#readme" diff --git a/integrations/mongodb_atlas/pyproject.toml b/integrations/mongodb_atlas/pyproject.toml index 5938e0378..80a2eec00 100644 --- a/integrations/mongodb_atlas/pyproject.toml +++ b/integrations/mongodb_atlas/pyproject.toml @@ -25,7 +25,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "haystack-ai>=2.0.0b6", + "haystack-ai", "pymongo[srv]", ] diff --git a/integrations/qdrant/pyproject.toml b/integrations/qdrant/pyproject.toml index 8c347e562..29be8da0f 100644 --- a/integrations/qdrant/pyproject.toml +++ b/integrations/qdrant/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] -dependencies = ["haystack-ai>=2.0.0b6", "qdrant-client"] +dependencies = ["haystack-ai", "qdrant-client"] [project.urls] Source = "https://github.com/deepset-ai/haystack-core-integrations" diff --git a/integrations/ragas/pyproject.toml b/integrations/ragas/pyproject.toml index 15ae4fa76..2db2770bd 100644 --- a/integrations/ragas/pyproject.toml +++ b/integrations/ragas/pyproject.toml @@ -21,7 +21,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] -dependencies = ["haystack-ai>=2.0.0b6", "ragas==0.1.1"] +dependencies = ["haystack-ai", "ragas==0.1.1"] [project.urls] Source = "https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/ragas" diff --git a/integrations/uptrain/pyproject.toml b/integrations/uptrain/pyproject.toml index 2c670e486..d43c77f28 100644 --- a/integrations/uptrain/pyproject.toml +++ b/integrations/uptrain/pyproject.toml @@ -22,7 +22,7 @@ classifiers = [ "Programming Language :: Python :: Implementation :: PyPy", ] dependencies = [ - "haystack-ai>=2.0.0b6", + "haystack-ai", "uptrain==0.5.0", "nest_asyncio", "litellm",