-
Notifications
You must be signed in to change notification settings - Fork 234
fix: update text search to match client's new sig #1654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -52,7 +52,7 @@ hnswlib = {version = ">=0.6.2", optional = true } | |||
lz4 = {version= ">=1.0.0", optional = true} | |||
pydub = {version = "^0.25.1", optional = true } | |||
pandas = {version = ">=1.1.0", optional = true } | |||
weaviate-client = {version = ">=3.15", optional = true} | |||
weaviate-client = {version = ">=3.17, <3.18", optional = true} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
weaviate-client = {version = ">=3.17, <3.18", optional = true} | |
weaviate-client = {version = ">=3.17", optional = true} |
I think it is better to not cap it. It might be that 3.18 will not break anything for docarray
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@samsja we should cap it now as there are breaking changes in the weavaite implementation if we don't. I will make another PR to fix it and will remove the cap there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but this means that the next version of docarray will never be compatible with the next one of weaviate. We cannot know in advance that it will be the case. It is better to react after wards
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I remove the cap now, then will poetry download the latest client i.e. 3.20.1 into the CI? If it does, then some of the tests will fail.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and when will this be fixed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the week after next week
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
then lets merge like this for now. Sorry misunderstanding on my side I thought this PR was fixing docarray for version 3.17 and above
fix #1653