In pip version specifiers, can I use comparison operators for dev versions? Say I'm making a package, and am tagging my development releases as 2.0.dev1, 2.0.dev2, and so on. Can I tell pip to always grab the latest dev version with >=2.0.dev1, or is there a different way I should tell it what I want?
I don't know about comparisons, but dquality with a wildcard seems to work. I specified 2.0.0b*, and pip grabbed 2.0.0b2. Hopefully it'll work for b3, b4, and other beta releases.
@alexhall I think it only does numeric comparisons.