wooden-thailand-8386
11/17/2020, 10:03 PMpackage
and run
are working fine so I’m assuming and hoping that I still get that sweet --changed-dependees=transitive
out of the box too…
2. This one I’m not sure if I’m tripping or not but I have an internal ML lib with classifiers, featurizers and all that # current one
libraries/
ml_stuff/
__init__
BUILD
preprocessing/
__init__
BUILD
classifiers/
...
# new one
libraries/
ml_stuff_preprocessing/
ml_stuff_classifiers/
• Or… pants
can get those specific inside packages in case I only need.. ml_stuff.preprocessing
? And if that requires Tensorflow it would get it, otherwise it wouldnt (?)witty-crayon-22786
11/17/2020, 10:04 PMdependencies
list of a target in a BUILD
file, then you’re saying: “trust me, all of the files in this target need this dep”wooden-thailand-8386
11/17/2020, 10:06 PMBUILD
files everywhere with a simple python_library()
inside and I noticed that the behavior changedwitty-crayon-22786
11/17/2020, 10:06 PM./pants dependencies --transitive $file
or ./pants dependencies --transitive $target
wooden-thailand-8386
11/17/2020, 10:12 PM