I am using a private github repository in order to install packages:
pip install --upgrade git+ssh://git@github.com/myuser/mypackage.git#egg=mypackage
In the requirements.txt it looks as the following:
git+ssh://git@github.com/myuser/mypackage.git#egg=mypackage
Afterwards, I added git tags for the versioning such as:
git+ssh://git@github.com/myuser/mypackage.git@0.1.9#egg=mypackage
How can I define a version range such as from 0.1.9 to 1.0.0 like this example:
git+ssh://git@github.com/myuser/mypackage.git@0.1.9<1.0.0#egg=mypackage
Or is it possible to use git master branch and define the version range with pip as described here: How to pip install a package with min and max version range?