[11:39:23] <wirrbel> dstufft, I read you are looking for pypi localization
[11:40:01] <wirrbel> I cannot point you to someone with experience in localization, but I would like to add some experience as a non english native dev
[11:41:19] <dstufft> wirrbel: Right now, we're trying to figure out the toolchain for doing so in Warehouse (what will become PyPI in the near future). The issue is https://github.com/pypa/warehouse/issues/881
[11:42:27] <wirrbel> localizing development resources (apart from introductory texts/books) is not something that I look for, and I have yet to meet someone who longs for localized docs/ pages.
[11:43:12] <wirrbel> so when it comes to prioritizing scarce development resources, this might be good to know
[11:43:20] <wirrbel> of course that is only my opinion
[12:10:38] <noregret> is there somethign wrong with pip ? https://bpaste.net/show/7e6b1a06be19 - i can browse to pypi.python.org normally
[12:46:40] <ionelmc> noregret: do you use a proxy or something
[13:13:04] <noregret> ionelmc: yes i think so, i see it under automatic config script in IEs options
[13:14:34] <noregret> ionelmc: is there a way to run pip without going thru the proxy? coz as i said, i can browser that address normally in firefox
[13:15:26] <ionelmc> noregret: you might need to manually specify the proxy
[13:15:40] <mgedmin> I think the problem is exactly the opposite: pip doesn't know about the proxy, and direct https access is forbidden by the firewall
[13:17:15] <mgedmin> try setting the https_proxy environment variable
[13:31:01] <noregret> mgedmin: yeah, as soon as I figure out the proxy address
[13:32:00] <noregret> can i use domain\username in pip --proxy ?
[13:33:47] <mgedmin> I've never used a proxy on Windows (or anywhere else), but Google tells me the format is ... http://stackoverflow.com/a/14150397
[13:46:47] <aviau> Hey guys! I am having troubles with pbr. I have a git submodule in my project and its breaking my install.
[13:46:54] <aviau> error: can't copy 'mailpile/contrib/print': doesn't exist or not a regular file
[13:47:31] <aviau> 'print' is the submodule. It looks like it has to do with setuptools-git or something, and probably the content of the folder is ignored
[13:47:54] <aviau> Its included in my MANIFEST.in file, and that didn't help.
[18:28:19] <ionelmc> i never really understood that part
[18:28:43] <ionelmc> the installation format sure, it has comprehensible issues
[18:29:14] <buck1> that's the bit i'm -2 on. the distribution format -0
[18:29:29] <buck1> dont know why anyone would want
[18:30:54] <dstufft> ionelmc: I suspect largely just because it's hard to disentangle the two formats, nobody had ever done it, and now we have wheel and there's little reason to go backwards
[18:32:23] <ionelmc> dstufft: so it basically boils down to reimplementing the egg reading parts from setuptools
[18:32:38] <ionelmc> dstufft: but wheel does in fact already have a converter right?
[18:41:08] <buck1> they conda package that too i suppose?
[18:41:13] <ngoldbaum> e.g. they don't package the entire C ecosystem, they just compile on a really old system so even though peopel have newer libraries installed on their systems it still "works"
[18:41:44] <ngoldbaum> one big example is glibc, but they also link against random system libraries a lot, i've noticed
[18:46:47] <ngoldbaum> although a side effect of compiling on RHEL5 (I think that's what they use) is that they're on a very old GCC, so the compiled code will be substantially slower (i've measured ~25%) than if compiled using a recent compiler
[18:46:55] <ngoldbaum> which is why i don't use anaconda for my personal stuff
[18:47:07] <ngoldbaum> i'll still recommend it to people who don't how how to set up a compiler environment
[18:50:12] <dstufft> ngoldbaum: I assume people can compile using a newer GCC when making wheels? :D Binary ABI shit makes my head hurt
[18:50:57] <ngoldbaum> dstufft: maybe? I think you have the same problem in the setuptools ecosystem if you're compiling a wheel that depends on an external C library.
[18:55:29] <ngoldbaum> yes, even the gentoo prefix uses the system glibc
[18:55:29] <buck1> i haven't had problems, but i havne't tested extensively
[18:55:50] <dstufft> no idea if you can load a .so linked against not-glibc into a python linked against glibc though
[18:55:55] <[Tritium]> I dont think binary wheels for gentoo will ever be a thing
[18:59:51] <tdsmith> anaconda has a bunch of libraries like libpng and libxml around that mess things up sometimes when anaconda users try to build homebrew things that use python; i assume that's a conda thing and not an anaconda thing but idk really
[19:00:19] <ngoldbaum> yes, i wouldn't combine homebrew and anaconda either
[19:00:28] <ngoldbaum> well, i wouldn't combine any two python environments