[10:25:50] <dstufft> mitsuhiko: no, it's happening pretty regularly :( I haven't had time to fix that yet (amongst all the other competing priorities I have atm). The uploads still work most of the time
[10:26:20] <mitsuhiko> it breaks my automatic release script
[10:29:22] <dstufft> mitsuhiko: yea :/ You can use Warehouse as a work around in the meantime (and hopefully later today the last caveat towards doing that will be gone)
[10:30:05] <dstufft> mitsuhiko: unrelated, but since you'd asked for this kind of data before - https://mail.python.org/pipermail/distutils-sig/2016-May/028986.html
[12:36:50] <xafer> hello, I'm looking for clean ways to create/activate/deactivate virtual env from inside another virtual env, is there any existing helpers ?
[12:37:36] <dstufft> xafer: I think the virtualenv to create just works inside of another venv
[12:39:09] <dstufft> xafer: maybe I don't understand what you're asking :]
[12:40:28] <xafer> I'm writing a script that will run in a virtualenv A and I'd like this script to build an other virtualenv B and run some commands in this new virtualenv B
[12:41:48] <xafer> Is there any better option that just running all my commands as shell with `source B/bin/activate & my_command` ?
[12:54:13] <dstufft> xafer: you can just run B/bin/my_command