[02:08:44] <Somelauw> I forgot I could have done build-dep
[02:08:53] <Somelauw> so I installed openblas and fortran
[02:09:14] <[Tritium]> build-dep would have installed those too
[02:09:31] <[Tritium]> well, it would have installed a fortran and a blas
[02:10:35] <Somelauw> I don't mind the blas, but openblas was listed as optimized but still free somewhere
[02:11:41] <[Tritium]> all I know about blas is that its not a library, its a class of library, that implements the sameish api, and there are many implementations
[16:08:29] <dstufft> iElectric: and yes, --install-tion and such shouldn't be mapped to wheels, if we need something that provides that can be generically applied to wheels it should get it's own flag and then pip should map that new flag to the appropiate install option if need be
[16:08:42] <iElectric> I have changes ready to add --prefix
[16:08:48] <iElectric> just need to write unit/func tests
[17:48:30] <iElectric> dstufft: any chance you could review https://github.com/pypa/packaging/pull/36
[17:50:50] <dstufft> iElectric: I thought unittest2 got fixed? I don't really like that because it makes some errors (like passing a None into Version()) either silently pass or give a more confusing error. I don't think it's a good idea to pass anything but a str() into the setup(version=...) kwarg.
[17:51:57] <iElectric> but really that code uses regex and expects a str()
[17:52:34] <iElectric> you could also catch None and print a reasonable error
[17:53:33] <iElectric> dstufft: currently unittest2 can't be build as a wheel because of that (latest version on pypi)
[17:55:10] <iElectric> dstufft: do you know if wheels support setuptools namespaces?
[17:55:34] <dstufft> iElectric: yea but _everything_ has a str(), a typeerror is better than an implicit cast
[17:56:00] <dstufft> iElectric: what do you mean by "supports"? it'll drop the __init__.py in place if it's part of the wheel
[22:08:04] <ghsk> hi, i'm trying to get a local virtualenv install ( ~ python virtualenv.py test with python 2.6 ) . I'm getting AddressValueError excpetion when installing pip. Same cmd worked for 2.7, does anyone know how to deal with this ? thanks
[22:08:22] <ghsk> fyi https://virtualenv.readthedocs.org/en/latest/installation.html is what I'm using
[22:08:39] <ghsk> maybe I should try older virtualenv ?
[22:11:55] <iElectric> dstufft: so would pip detect if it had requests 1.x and requests 2.x in $PYTHONPATH?