|
|
|
|
|
by amingilani
707 days ago
|
|
> poetry took whole day and still couldn't resolve deps. I hate doing this, but the solution is to reduce the search space for poetry to find a compatible version. Verbosely install with poetry (-vvv) and note the package it gets stuck on. Find the currently installed version from the lock file and specify it as the minimum in your pyproject.toml file. The time to find a solution went from 2-4 hours to <90 seconds when I did this a few months ago for a large complex work project. |
|