-vvv option).Hello there. I'm trying to create a set of packages that have some dependencies within themselves. Since I'm still kicking things off, everything is local.
My problem arises when installing a local package, that itself depends on a local package.
I've created a small script to reproduce the issue:
#!/bin/bash
set -e
TMPDIR=$(mktemp -d) && echo "$TMPDIR" && cd "$TMPDIR"
poetry new aa
poetry new ab
poetry new ac
cd ab && poetry add ../aa && cd ..
cd ac && poetry add -vvv ../ab # boom
and the resulting output in this gist
Is there anything I'm doing wrong?
And thank you in advance.
Hello @Qu4tro ,
this is a duplicate of https://github.com/python-poetry/poetry/issues/1689. So I'm closing this here.
fin swimmer
Thanks.
Most helpful comment
Hello @Qu4tro ,
this is a duplicate of https://github.com/python-poetry/poetry/issues/1689. So I'm closing this here.
fin swimmer