[17:10:39] <msabramo> What is the PEP 440 equivalent version specifier of "python-dateutil<2.0,>=2.2"? Comma used to mean OR and now it's AND. I can't find a way to express an OR w/ PEP 440?
[17:12:10] <dstufft> msabramo: command didn't mean OR before, it's rules were fairly complicated and I never could quite grok all of them, a generalization is sometimes it meant OR, sometimes it meant AND, and sometimes it meant... something else, "COMBINE" or something.
[17:12:36] <tos9> Sigh how do I tell pip to stop trying to uninstall the global distribute when I pip install --user -U setuptools
[17:12:42] <dstufft> in PEP 440 there is no OR though
[17:12:48] <dstufft> tos9: does --ignore-installed work?
[17:12:51] <msabramo> dstufft: ok wow so it was very confusing I guess. A lot of people in my org seemed to treat it like an OR it seems