Open
Description
Description
Pip version resolver fails when installing Poetry package in editable mode if package is required both by TOML file & requirements.txt file:
INFO: pip is looking at multiple versions of first-library to determine which version is compatible with other requirements. This could take a while.
ERROR: Cannot install requirements.txt (line 1) and second-library 0.1.0 (from libs/second_library) because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested second-library 0.1.0 (from libs/second_library)
first-library 0.1.0 depends on second-library 0.1.0 (from libs/second_library)
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict
Expected behavior
No response
pip version
Pip 24.0
Python version
Python: 3.10.0
OS
MacOS
How to Reproduce
Create folder structure
requirements.txt
libs/first_library
libs/second_library
with requirements.txt content
-e ./libs/first_library
-e ./libs/second_library
first_library pyproject.toml dependencies
[tool.poetry.dependencies]
python = "^3.9"
second-library = {path = "../second_library", develop = true}
run
pip install -r requirements.txt
Output
The conflict is caused by:
The user requested second-library 0.1.0 (from libs/second_library)
first-library 0.1.0 depends on second-library 0.1.0 (from libs/second_library)
Code of Conduct
- I agree to follow the PSF Code of Conduct.