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
I have searched the issues of this repo and believe that this is not a duplicate.
If an exception occurs when executing a command, I executed it again in debug mode (-vvv option).
OS version and name: ArchLinux
Poetry version: poetry 1.0.0b9-1
Link of a Gist with the contents of your pyproject.toml file: None
Issue
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
-vvv
option).Issue
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:
and the resulting output in this gist
Is there anything I'm doing wrong?
And thank you in advance.
The text was updated successfully, but these errors were encountered: