My issue is that, i want to represent 3 environments: dev, int, prod
- On dev I want to install the most up to date dev-version: 1.0.0.dev0
- On int I want to install the most up to date rc-version: 1.0.0.rc0
- On prod I want to install the most up to date production version: 1.0.0
Is there a way like in these examples?
pip install --pre==dev MyModuleshould install me 1.0.0.dev0pip install --pre==rc MyModuleshould install me 1.0.0.rc0pip install MyModuleshould install me 1.0.0
My intention is to have a release-flow like
- 1.0.0.dev0
- 1.0.0.dev1
- 1.0.0.dev2
- 1.0.0.rc0
- 1.0.0.rc1
- 1.0.0
My problem is, that i can represent only 2 states: a pre-release version and one without pre; but i need 3 states.
Is there a way to realize this? Maybe even without pip?
from Can pip install only a specified type of pre-release versions?
No comments:
Post a Comment