I\'m wondering if there\'s any way to tell pip, specifically in a requirements file, to install a package with both a minimum version (pip install package>=0.2
pip install package>=0.2
you can also use:
pip install package==0.5.*
which is more consistent and easy to read.