Poetry install of V4 libraries

poetry add weaviate-client only installs 3.26

is there a way to use poetry to install V4 ?

Thanks

Hi!

You need to explicitly specify the version.

As of now, the v4 version is:

so it would be like:

poetry add weaviate-client@v4.4b6

Let me know if that helps.

1 Like

Yes it does! Thanks a lot.
Where would I find which is the latest poetry installable release?
Take care and happy 2024

Hi! You can either check the list at the package page in pypi:

Or, on this specific case, check the tags and releases in the client GH repo:

1 Like

Thank you, of course!