[13:54:03] <BlueAidan> looks like cp2 and pp2 worked
[13:54:40] <BlueAidan> needed to be able to specify psycopg2-cffi on pypy and psycopg2 on cpython
[14:10:42] <tdsmith> dstufft: i'm sure you're aware but i think the pypa issue tracker probably likes the idea of deprecating the invocation of pip's scripts much better than the python community as a whole will :p
[14:12:05] <tdsmith> i'll land https://github.com/Homebrew/homebrew/pull/44667 and see if anyone notices
[14:17:15] <dstufft> tdsmith: Yea, I mean IDK the right answer here :(
[14:43:57] <dstufft> tdsmith: "why not pip2 and pip3", this is a preview of what proposing this to the greater public is going to be like I bet
[14:55:29] <Muchoz> When pip says a clone repo already exists and asks you to ignore, switch, wipe or backup it. Is there a way to automatically reply to this from the cli?
[14:58:55] <tdsmith> if there isn't, you could pipe in an answer with `yes`
[15:00:41] <tdsmith> dstufft: idk that i have a good answer for xu-cheng tbh; having a pip2 in PATH that isn't ours when our python is in PATH seems a little exotic
[15:01:34] <dstufft> tdsmith: you mean like the one you get if you do python -m ensurepip on stock OS X Python in El Capitan and the latest update to Yosmite?
[15:06:00] <dstufft> tdsmith: it's not a great situation, I can't think of a good way to generically handle this within the script wrappers themselves that isn't just a time bomb
[15:29:25] <dstufft> "Yes, I have pulled the bugs into an upcoming release for one of the engineers on my team to look at. I’m out of town right now, so I don’t have current status, but I’ll get in contact if there is something that can be done on your end as well to help with the situation. " /cc tdsmith Ivo (Just got that from Apple)
[15:40:19] <Ivo> hope there isnt some critical system tool that needs matplotlib and six in their system python
[16:33:32] <elarson> I'm trying to install a package from the filesystem in jenkins. I can pip install -r my-reqs.txt and everything works with `-e path-to-package` in the requirements.txt but when ci runs, it can't find the directory, even though I can log into the workspace and see it
[16:36:13] <dstufft> elarson: -e might be relative to the current dir, not the requirements.txt
[16:40:19] <elarson> hmm... it should be the same but maybe it isn't
[16:49:14] <jwhite007> i'm having trouble doing a pip install of numpy… "ImportError: libblas.so: cannot open shared object file: No such file or directory" upon issuing "locate libblas.so", i get "/usr/lib64/libblas.so.3"
[17:28:59] <Ivo> why does github md make -----------
[17:33:50] <jwhite007> i'm having trouble doing a pip install of numpy… "ImportError: http://libblas.so/: cannot open shared object file: No such file or directory" upon issuing "locate http://libblas.so/", i get "/usr/lib64/libblas.so.3"
[17:35:31] <tdsmith> i assume it doesn't actually say "http://libblas.so/" on your terminal
[20:38:09] <dstufft> agronholm: they aren't really :( there's some PEPs that mention them, and a new PEP that attempts to finally standardize them in a way that isn't tied to Metadata 2.0
[21:09:02] <Ergo> hey guys, when doing workshop, is there a way i can ensure that I can supply all the needed dependencies to people somehow? I have no idea if the network will be stable during the event
[21:10:00] <Ivo> Ergo: use pip wheel command for all packages you want, they go in a folder, zip folder up, distirbute to participants
[21:10:31] <Ergo> Ivo: but that will work only for one OS/arch right?
[21:10:54] <Ivo> Ergo: if the packages are pure python it will work for any
[21:11:18] <Ivo> you could also download the wheels / sdists off pypi if you want
[21:13:23] <Ivo> note that by default `pip wheel` will produce wheels only compatible with your python major version (2 or 3)
[21:13:42] <Ivo> many pure python packages' wheels on pypi might be 2 & 3 compatbile
[21:15:31] <nanonyme> Wasn't there some way to declare universal wheel?
[21:16:23] <Ergo> it will be only for python 3.x, I'll need to check if everything can run without c extensions :-)
[21:19:58] <offero> I'm noticing an issue with data files using pip 1.7
[21:20:26] <offero> In pip 1.5.6, data files are copied correctly, but using 1.7, then are not.
[21:20:43] <offero> pip install Scrapy==0.16.4 for instance