You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I upgrade a specific dependency (let's say llama-index) to the most updated version, "poetry add" would report error, due to the consistency check (version solving failed).
I figure the problem is that, there are transitive/indirect dependency packages, shared among the first-level direct dependency packages, let's say llama-index and llama-index-embedding-huggingface might share some common indirect dependency. If I upgrade llama-index and its transitive/indirect dependency alone, this would make those transitive dependency inconsistent with direct dependency, lower version of llama-index-embedding-huggingface.
In that case, in current poetry, is there any command to upgrade all those dependencies together to make them compatible, without listing them one by one? one command, and it will detect all the impacted dependencies, and automatically upgrade them for consistency?
I saw that poetry can add git repository, will that address or partly address this issue?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello All,
When I upgrade a specific dependency (let's say llama-index) to the most updated version, "poetry add" would report error, due to the consistency check (version solving failed).
I figure the problem is that, there are transitive/indirect dependency packages, shared among the first-level direct dependency packages, let's say llama-index and llama-index-embedding-huggingface might share some common indirect dependency. If I upgrade llama-index and its transitive/indirect dependency alone, this would make those transitive dependency inconsistent with direct dependency, lower version of llama-index-embedding-huggingface.
In that case, in current poetry, is there any command to upgrade all those dependencies together to make them compatible, without listing them one by one? one command, and it will detect all the impacted dependencies, and automatically upgrade them for consistency?
I saw that poetry can add git repository, will that address or partly address this issue?
Best
Beta Was this translation helpful? Give feedback.
All reactions