I have a python project under SVN, and I'm wanting to display the version number when it is run. Is there any way of doing this (such as automatically running a short script on commit which could update a version file, or querying an SVN repository in Python?)
|
I'm not sure about the Python specifics, but if put the string $Revision$ into your file somewhere and you have enable-auto-props=true in your SVN config, it'll get rewritten to something like $Revision: 144$. You could then parse this in your script. There are a number of property keywords you can use in this way. This won't have any overhead, e.g. querying the SVN repo, because the string is hard-coded into your file on commit or update. I'm not sure how you'd parse this in Python but in PHP I'd do:
|
|||||||||||||
|
|
Similar to, but a little more pythonic than the PHP answer; put this in your module's
and make sure you add the Revision property:
|
|||||
|
|
There's a snippet of code in Django that allows you to do this, I'd recommend looking at it. http://code.djangoproject.com/browser/django/trunk/django/utils/version.py |
|||||
|
|
The file |
|||||||
|
|
I do this by simply running a small script when building my project. The script just calls svn info in combination with sed to get out the bare revision data and injects that number into the revision.txt file. The Hudson build server makes it even easier as it sets the SVN revision number as an environment variable right before invoking your Build scripts. |
|||
|
|
|
Check out pysvn. it exposes extensions in Python for Subversion runtime functionality. |
||||
|
|
|
I find the when it is run section slightly ambiguous - when it is run from where ? From an SVN checkout or from released code ? All the solutions work on injecting the SVN version somehow into the Python source or somewhere in the repository in a separate version file. The version file is changed on fresh checkouts, so clean checkouts need to be done before distribution. So my question of where the program is being run remains. |
|||
|
|