Got a qq, why is the pants package not re-building...
# general
m
Got a qq, why is the pants package not re-building when one of the python script has been changed? It still outputs the same pex file for the target without actually building anything. Any pointers? Thanks!
c
first thing I'd check is whether that script is really a dependency of the package.
pants dependencies --transitive path:taget
should help. You can also inspect the PEX to see if the script is included
m
Thanks, I'll check the deps. but I think it must have been included, since the file that's changed is the entrypoint one.
c
There was a bug with ambiguous entry points, might be worth checking link
❤️ 1
m
Thanks!