[19:26:43] <tos9> pip complaining about installing packages from places that it in fact is not even installing them from is a known issue right
[19:26:55] <tos9> I've definitely seen this the last time I searched for it, but not finding it right now
[19:27:56] <tos9> (saying "http://someindex.com/somepackage uses an insecure transport scheme (http). Consider using https if someindex.com has it available", when in fact that's a complete lie and pip is not installing somepackage from someindex
[19:29:58] <tos9> Probably the SSCCE just involves pointing pip at a requirements file with 2 requirements, one with a regular PyPI requirement and another a straight tarball retrieved over HTTP
[19:31:05] <dstufft> it's just randomly adding it?
[19:31:59] <tos9> dstufft: Sorry what are the its in that sentence? I have a tarball requirement, which is installed from a URL, but then I have some regular requirements, and pip is claiming that it's looking at myurl/twisted, when that's clearly false
[19:32:12] <tos9> (that URL does not return Twisted, and Twisted is being retrieved from regular ol' PyPI)
[19:39:59] <tos9> Apparently I was su'ed to a user that had --extra-index-url in a pip.conf
[19:40:49] <tos9> dstufft: So presumably that's intended behavior I guess? If pip is hitting an index server over HTTP, even if it returns a 404, it's going to warn that it spoke HTTP?
[23:27:36] <AuroraBorealis> I have q question on how pip selects the version to install, there is a package, when i tell pip to install it, it selects a version that is not the latest, and i'm not understanding why: http://paste.pound-python.org/show/Uwnfqxgqje6Ol3qoVtQJ/
[23:27:44] <AuroraBorealis> is it because the 'latest version' has an 'a' in it for alpha?
[23:37:17] <AuroraBorealis> i'm confused, how does it 'know' its a prerelease version? that says if it can't parse the version string then its a prerelease version but it appears right according to the PEP it linked
[23:38:11] <AuroraBorealis> or is it just figuring out its prerelease by the pep426 parsing
[23:39:44] <tos9> yes, that pep defines which suffixes mean things
[23:40:14] <tos9> or I guess it looks like an associated pep does