python - Is there a good way to do version control when developing pylons applications with dependencies? -
I am developing two policies applications at the same time. In applications B, applications are used in many controllers etc. Both of these applications are under active development, but they have to be kept separate for administrative reasons.
Is the version a convenient way to control so that it is easy to draw changes in A in B? It would be great if there is a way to do this with SVN, because it already plays well with pylons and pastors.
The only proper way for what you want to do is to apply the application against the formal release of application A Work is done, even if those releases beta or released candidates <>. IOW do not consider App A as a source code, but as imported module installed in By doing this in this way you will move App B. In a well-known case of another, you will be able to report bugs or inconsistencies against special releases, and when a new A breaks B setup.py or other ways.
Comments
Post a Comment