[03:03:25] <sontek> Hey, with pypi is there a way to get it to follow the same lookup semantics that pip does? I released a new release candidate of a lib and the rc shows as the default version
[03:03:34] <sontek> Even though pip still pulls the stable version
[03:12:26] <sontek> Also, did something change with how restructured text is used in the docs? My README renders just fine on github and with python setup.py --long-description | rst2html.py > output.html but its completely broken on ppi
[09:52:41] <apollo13> and another thing: https://hg.python.org/cpython/file/1c51f1650c42/Lib/asyncio/selector_events.py#l699 -- do you have any idea why python3.5 code has fallbacks for 3.3?!
[09:53:58] <dstufft> if you want to make your own wheel cache you can add the wheel-dir and find-links to your pip.conf, it'll require you to do like ``pip wheel -r requirements.txt`` but after that subsequent ``pip installs`` will use the wheels youj built
[09:54:17] <dstufft> apollo13: probably because asyncio is distributed on PyPI
[09:54:25] <dstufft> and it makes it easier to do that if you use the same code
[09:54:38] <the_drow_> Anyone knows in which directory 6.x caches sdist or wheels?
[09:54:48] <the_drow_> It's not specified in the documentation
[09:56:14] <dstufft> which roughly translates to ~/.cache/pip unless someone sets it to something different either via $XDG_CACHE_HOME or the pip config to point it somewhere else
[09:56:19] <the_drow_> Oh so it's the home directory
[09:56:28] <the_drow_> dstufft: Can someone document it somehow?
[09:56:50] <apollo13> it's funny how people have different expectations
[09:57:15] <the_drow_> Also since travis uses pip 1.5 how can I configure the environment to ensure that pip is forward compatible?
[09:57:21] <apollo13> when I saw the cache dir deprecation warning in pip 6.0 I immediatelly checked ~/.cache/pip, cause that is where stuff is supposed to bew :)