[12:28:56] <pjdelport> mgedmin: That only seems to save pip's own output; no further details.
[12:37:33] <nanonyme> Hey, it looks like when calling python -mpip freeze on Windows through subprocess.check_output, it makes the parent terminal yellow. What gives?
[12:41:51] <pjdelport> Is there a reason why pip wheel supports --build-option, but pip install doesn't?
[12:59:31] <dstufft> pjdelport: adding some -vvvs might get you that output
[13:00:06] <dstufft> and the reason is because ``pip install`` doesn't call build, it calls install so it gets a different flag (Yea this is kinda crappy in general)
[13:01:34] <pjdelport> dstufft: Yeah, i was trying to get it to pass stuff to build-ext for Pillow, but it turns out that --build-option doesn't do that anyway.
[13:01:57] <pjdelport> dstufft: One -v seems to do the trick, yeah!
[13:46:01] <nanonyme> I didn't spot any --no-colors or whatever option
[13:46:57] <dstufft> nanonyme: I don't know anything about the Windows terminal, we do use colors (and specifically the yellow color) but everyplace we use it we should also be resetting the colors after we're done via colorama