PMXBOT Log file Viewer

Help | Karma | Search:

#pypa-dev logs for Thursday the 27th of June, 2019

(Back to #pypa-dev overview) (Back to channel listing) (Animate logs)
[13:27:22] <toad_polo> Anyone know of a good way to list, recursively, all the commands that are going to be run from issuing a given `setup.py` command?
[13:28:57] <toad_polo> One of the things blocking me on the editable installs stuff is that there is no specific place in the `command` structure where the list of things to install are gathered.
[13:29:54] <toad_polo> I think it's all or mostly in `install_lib`, which gathers the files and installs them at the same time.
[15:16:37] <pradyunsg> toad_polo: I think the logs from setuptools prints the commands "Running ..."
[15:18:04] <toad_polo> pradyunsg: I don't actually want to run them, just to figure out what they are.
[15:18:48] <toad_polo> Maybe it's not possible if running a command can trigger another command.
[15:19:32] <pradyunsg> toad_polo: Yep yep, run any one "setup.py install" and then it'll print the ones it runs. Those are run for every "install" for example.
[15:19:47] <pradyunsg> Oh! Nvm me. I misunderstood what you asked for.