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 do:
$ pip install "package>=0.2,<0.3"
And pip will look for the best match, assuming the version is at least 0.2, and less than 0.3.
pip
This also applies to pip requirements files. See the full details on version specifiers in PEP 440.