How to set the dependencies that are in the parall...
# general
g
How to set the dependencies that are in the parallel directories? I tried
"../package2:src"
and it gives an
InvalidSpecPathError
.
b
you cannot specify paths like that, you need to specify like
project/package:src
instead
try doing
pants list ::
to find the sources you want to depend on
r
What Kasper said is correct. You need to have a path relative to pants.toml if it's not a path inside some subdirectory
g
@better-yacht-90735 Thanks for the feedback. I tried with it and now the issues is it requires an owner. I fixed it by creating packages for each of the parallel directories. Seems to work so far.