I'm also having a problem resolving dependencies: ...
# general
s
I'm also having a problem resolving dependencies:
Copy code
> ./pants dependencies baz:baz
baz/baz/application.py:../baz
baz/baz/server.py:../baz
library/core/core/mongo.py:../core  <--- This requires pymongo
library/foo/foo/jwtcherry.py:../foo
thirdparty/python:cherrypy
pymongo is not getting bundled into my
.pex
but it does correctly appear as a dependency of
core
, so I assumed this would have been resolved automatically
Copy code
> ./pants dependencies library/core
<other deps>
thirdparty/python:pymongo
<some more deps>
w
the
dependencies
goal isn’t transitive by default: does
dependencies --transitive
for the the second target show the right thing?