During development I build and push feature branch versions of my package that look like: 1.2.3+mybranch
.
So I'll have packages named 1.2.3
, 1.2.3+mybranch
and 1.2.4+mybranch
, and 1.2.4
.
The problem is it seems pip has no problem installing a package with a +suffix
when doing a regular pip install --upgrade
.
I don't want pip to do that.
Is there a way I can have only release versions installed with pip install --upgrade
? I would think pip would do this by default.