-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Multiple Python restricted dependencies not solved properly #4947
Comments
Poetry correctly finds the different dependencies
but then tries to resolve a combination which should not be possible:
|
Thanks for the response @radoering, code from #4695 does however not fix the issue and the error is still the same. |
I copied the extract from the pyproject.toml you provided and was able to run Further, due to another issue, I improved #4695 a bit to cover more cases just a moment ago. Maybe, you can check if that coincidentally solves your problem. |
Dear @radoering, I am sorry, I was wrong. Your PR actually fixes the problem and it might have done even before your fix, I think I used a wrong branch of your repo. |
I have the same problem and verified that the PR does indeed fix it. Are there any plans to merge this in the near future? |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
-vvv
option).Issue
Hello, I have run into issues with dependency solving using multiple Python restricted dependencies as follows:
with the error (after running
poetry update
):When I try the different versions for Python ~3.8 and for Python ^3.9 separately as
and
everything goes fine.
Why does poetry mix the Python specific dependencies together and does not respect the Python version conditions?
The text was updated successfully, but these errors were encountered: