[02:53:10] <Rod> It's mostly about contributing to twine. I suspect a problem when running tox
[08:12:47] <cxz> does pip ignore the global.proxy setting in pip.conf when fetching from the index url?
[15:48:51] <carljm> DanielHolth: hey, it seems the install_requires might be wrong on ReloadWSGI? Depends only on PasteDeploy, but imports paste.reloader, which isn't part of PasteDeploy
[15:49:07] <carljm> oops, wrong channel; where's the right place to discuss this?
[17:04:55] <DanielHolth> carljm you are correct, that's a bug
[21:05:26] <linovia> what is the session argument for in the parse_requirements ?
[21:06:05] <linovia> I used the parse_requirements to get the install_Requires from the requirements file but it seems this doesn't work any longer with newer pip
[21:07:26] <ronny> linovia: why do you use the pip "api" again?
[21:07:47] <linovia> I usually try to avoid as much as possible redoing things
[21:08:09] <ronny> nice answer, but not really a answer to my question
[21:08:48] <linovia> oh, sorry. in my setup.py I have install_requires = [str(ir.req) for ir in parse_requirements('requirements.txt')]
[21:09:12] <dstufft> linovia: it's a PipSession() instance, but this API isn't really designed to be used by anyone besides pip, generally you should declare your requirements inside of setup.py (more info https://caremad.io/2013/07/setup-vs-requirement/)
[21:09:37] <linovia> yeah, and get cursed with eggs :(
[21:22:22] <ionelmc> and now it's a walking zombie that leave bugs in its wake
[21:22:34] <ronny> well, and it even steals cappabilities
[21:22:37] <dstufft> it wasn't killed exactly, there's no reason mutli version support couldn't be implemented, just one of the things is having separate tools for different tasks, part of the problem with "egg" was that it handled like 5 different things
[21:22:49] <dstufft> and it didn't do any of them great
[21:23:03] <ronny> i already have a plan for a pacakge repo for wheel installs ^^
[21:23:22] <ronny> (imho venvs should just be a list of distributions + the scripts needed)