[02:10:30] <dstufft> e.g. do you live in asia/australia-ish area
[02:11:37] <tdsmith> hey dstufft: there's a change in master on distlib I'd like to see bundled into pip; when would Vinay have to make a distlib release for it to have a high probability of landing in the next pip release?
[02:28:10] <buck1> i tried to factor that one out before =/
[02:28:25] <buck1> dstufft: seems like your proposal to deprecate it was successful
[02:28:41] <buck1> the requirement-casing double check
[02:29:03] <dstufft> looks like the fastly status got upgraded to other DCs and transit across all DCs
[09:43:30] <doismellburning> I cannot express sufficiently just how much easier pex looks like it will make my life
[09:44:20] <doismellburning> I have one client building chroots with mock to virtualenv inside; another spinning up Docker instances, another that does python-package-fetch-and-install at _deploy time_
[13:05:29] <dAnjou> but yeah, this thing definitely needs some work
[21:14:13] <gchristensen> Hi, when I do: pip install git+ssh://git@github.com:account/repo.git it runs the git command: /usr/bin/git clone -q ssh://git@github.com:account/repo.git /tmp/pip-Uq2SiI-build which fails to authenticate using my SSH key. oddly enough, when I run that same git command just without the ssh:// at the start, it connects fine and clones ok. is there a way to make pip not prefix the clone url with ssh://, or has
[21:14:16] <gchristensen> anyone seen this / know a way to resolve it? FWIW I'm using a read-only deploy key for this repository. (cc EWDurbin, warmwaffles told me to ping you.)
[21:17:17] <gchristensen> it is worth noting that I'm not attached to git deps, I'm just not sure of a good way to let my devs have private deps which can be resolved in our production packaging environment and locally
[21:19:02] <gchristensen> I guess the core of my issue, is prefixing the git repo with ssh:// is somehow preventing my ssh keys from being used for authentication :|
[21:31:37] <gchristensen> EWDurbin: turns out git+ssh://git@github.com:account/repo.git should have been git+ssh://git@github.com/account/repo.git
[21:45:32] <gchristensen> yeah ... while we're at it, looking for a "this is the 1-2-3 for making a pip-compatible package" guide was pretty disappointing as well ...
[21:46:04] <dstufft> packaging.python.org has some stuff
[22:08:29] <gchristensen> before I found the : vs / error, I had asked questions in #git and ##linux going deeper and deeper into the stack (none of them were able to help much :P)