-
Notifications
You must be signed in to change notification settings - Fork 15
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
add unasync to project dependencies #56
Conversation
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.
Thanks! LGTM. The isort change can be a follow-up too.
libs/elasticsearch/pyproject.toml
Outdated
|
||
[tool.poetry.group.codegen.dependencies] | ||
unasync = "^0.6.0" | ||
isort = "^5.13.2" |
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.
I did not notice that the last time, but should we remove isort, as ruff includes it already?
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.
I guess we should. Didn't know ruff sorts, I'll switch to that.
f415591
to
09bd446
Compare
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.
Did the poetry.lock update break the integration tests?
Yes, indirectly it did, but for a good reason. The tests were designed to work with the <=8.15 Python client, which used knn for hybrid search. We updated the 8.16 client to use a retriever query instead, so now these tests need updating. |
Added unasync and isort to pyproject.toml. This was missed in the unasync PR.