Python 3rdParty Dependency not Resolving Correctly #21445
-
I am trying to add src/3rdparty/requirements.txt
src/3rdparty/BUILD
src/application/BUILD
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Looks like it is an issue with Pex. I created a simple project and packaged with Pex I get the same error. However, if anyone here knows how to resolve this issue in Pex, I would be grateful. This issue is likely being caused by a module name being confused as a transitive dependency's submodule, e.g. dependency |
Beta Was this translation helpful? Give feedback.
What is your value for this option ? Often when pex has trouble with this sort of thing it's because of funky dists that aren't amenable to symlinking. You can experiment with this in standalone pex with the
--venv-site-packages-copies
flag.