[02:57:47] <Callek> Is there a way to do basically `pip search` or some similar functionality with checking against a different python version than I'm running, and/or displaying what python versions are available for which package versions
[02:57:57] <Callek> e.g. a way to inspect with `python_requires`
[03:06:06] <njs> Callek: I think the way to do that would be to go to pypi.org's search page, and then somehow filter by required python version.... or possibly by filing an issue on the pypa/warehouse repo asking them to add that as a filter option if it's not there yet :-)
[03:07:50] <Callek> njs: in my case, it looks like using website I see "3.5" and "3.6" as options, but I have in my deployment 3.5.2 and some packages depend on 3.5.3+ so being able to prevent package updates that use 3.5.3+ until I update my deployment would be great
[03:08:27] <Callek> (I also have 3.5.2 locally, but I try to dev/work with 3.6.x locally in my 90% of cases, relying on tox to use 3.5.2 when needed)
[03:10:05] <njs> huh, who depends on 3.5.3+? that's very unusual
[03:18:15] <njs> you might file a bug asking for more granular python versions in the search -- it's possible that they, like me, didn't realize that pakcages actually cared about micro versions like that