[19:48:29] <tdsmith> i'm surprised that installing setuptools from an sdist is fetching pip from pypi https://github.com/Homebrew/homebrew/issues/41697#issuecomment-121354320
[19:49:01] <tdsmith> i would like to keep that from happening
[20:07:30] <tdsmith> i wonder if there's detritus from a prior pip installation that isn't cleaned up well enough
[20:11:55] <dstufft> that's certainly a possibility
[20:16:56] <lystra> Hi. I've built matplotlib-1.4.3 on Python-2.7.5, 3.3.2, and 3.4.3. Python 2.7.5 cannot find the mpl_toolkits.mplot3d library. Apparently it would if matplotlib-1.4.3-py2.7-nspkg.pth was read but it is not. How does Python know to read the nspkg.pth file? Maybe I screwed up my build of Python 2.7.5 somehow.
[20:25:02] <tdsmith> dstufft: resolved by upgrading pbr, go figure
[20:44:26] <tdsmith> you can add a .pth file to a blessed directory with a line of the form `import site; site.addsitedir("/path/to/directory/with/pth/files")`
[20:44:39] <tdsmith> or do the same thing in the user/sitecustomize.py
[20:55:30] <lystra> tdsmith: site.addsitedir seems to work with sitecustomize.py. Ugh. Thanks.
[22:09:13] <dgarstang> I'm trying to install a python package from a custom index server. However, I want dependancies to come from python.org. How do I do that? I'm installing with pip
[22:12:43] <dgarstang> at line 4... it seems to be searching my index server for boto. ... it ain't there
[22:13:09] <dgarstang> and then repeat once for each dependancy
[22:13:28] <dstufft> well it's gonna search both indexes, but it should handle the case where it only exists in one of the indexes fine
[22:13:45] <dgarstang> dstufft: yes, but the warnings.... nasty
[22:13:52] <dstufft> dgarstang: looks like it worked fine
[22:13:58] <dstufft> it just had some deprecation warnings
[22:14:06] <dgarstang> it did... but it causes my OCD much pain
[22:14:58] <dstufft> dgarstang: what version of pip are you using?
[22:15:16] <dgarstang> I previously was using https://pypi.python.org/pypi/pypiserver, and this wasn't an issue with that. For some reason, after switching to Artifactory as the index server, this is now an issue
[22:18:21] <dstufft> dgarstang: I don't think there's currently a way to remove the deprecation warnings, you can open an issue or just wait until we remove those warnings which will be in pip 8
[22:19:26] <dgarstang> dstufft: Hmmm. Ok. Thanks. There's no way to put the logic into the package itself? Adding -i to the requirements.txt won't help?
[22:21:37] <dstufft> that's the only way to trigger it, if you serve a blank page on /simple/boto/ it wouldn't trigger it, it's only if you get a 404 because that triggers some older logic that we want to get rid of
[22:21:48] <dstufft> in pip 8 that older logic will be gone (and so will the deprecation warning)