/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: Robert J. Tanner
  • Date: 2009-04-29 05:53:21 UTC
  • mfrom: (4311 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4312.
  • Revision ID: tanner@real-time.com-20090429055321-v2s5l1mgki9f6cgn
[merge] 1.14 back to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
51
51
# releaselevel of 'dev' for unreleased under-development code.
52
52
 
53
 
version_info = (1, 14, 0, 'final', 0)
 
53
version_info = (1, 15, 0, 'dev', 0)
54
54
 
55
55
# API compatibility version: bzrlib is currently API compatible with 1.13.
56
 
api_minimum_version = (1, 14, 0)
57
 
 
 
56
api_minimum_version = (1, 15, 0)
58
57
 
59
58
def _format_version_tuple(version_info):
60
59
    """Turn a version number 2, 3 or 5-tuple into a short string.