/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2006-08-11 09:12:11 UTC
  • mto: (1904.1.3 0.9)
  • mto: This revision was merged to the branch mainline in revision 1913.
  • Revision ID: mbp@sourcefrog.net-20060811091211-24dce8250b355044
Set version for 0.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
43
43
# releaselevel of 'dev' for unreleased under-development code.
44
44
 
45
 
version_info = (0, 9, 0, 'candidate', 1)
 
45
version_info = (0, 9, 0, 'final', 0)
46
46
 
47
47
if version_info[3] == 'final':
48
48
    version_string = '%d.%d.%d' % version_info[:3]