billions-printer-97253
05/15/2023, 4:29 PMpants run :cli
it will rebuild all the package each time I just change the source code.happy-kitchen-89482
05/15/2023, 4:34 PMpants run
on a pex_binary actually builds the pex and then runs it. Instead you can pants run
on a source file (typically the main of the binary) and it will run on the loose sources, without rebuilding an intermediate pex.billions-printer-97253
05/15/2023, 4:38 PMenough-analyst-54434
05/15/2023, 4:43 PMpython_source
target covering that file.billions-printer-97253
05/15/2023, 4:45 PMhappy-kitchen-89482
05/15/2023, 4:46 PMbillions-printer-97253
05/15/2023, 4:47 PMwitty-crayon-22786
05/15/2023, 4:49 PMpex_binary
avoids: all of the actual requirements going into the pex binary are cached as built wheels, so you aren’t actually rebuilding wheels each time: just copying them into an output binary.billions-printer-97253
05/15/2023, 4:51 PM