/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 breezy/__init__.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2017-06-10 18:19:26 UTC
  • mfrom: (6672.1.3 kill-api)
  • Revision ID: breezy.the.bot@gmail.com-20170610181926-cmki2ndblpjrtn7k
Remove ``breezy.api`` and the concept of API versions.

Merged from https://code.launchpad.net/~jelmer/brz/kill-api/+merge/325442

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 
57
57
version_info = (3, 0, 0, 'dev', 1)
58
58
 
59
 
# API compatibility version
60
 
api_minimum_version = (3, 0, 0)
61
 
 
62
 
 
63
59
def _format_version_tuple(version_info):
64
60
    """Turn a version number 2, 3 or 5-tuple into a short string.
65
61