/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 info.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-04-13 23:16:57 UTC
  • mfrom: (1662.1.1 bzr.mbp.integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060413231657-bce3d67d3e7a4f2b
(mbp/olaf) push/pull/merge --remember improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from __future__ import absolute_import
2
 
 
3
 
bzr_plugin_name = "git"
4
 
 
5
 
dulwich_minimum_version = (0, 18, 0)
6
 
 
7
 
# versions ending in 'exp' mean experimental mappings
8
 
# versions ending in 'dev' mean development version
9
 
# versions ending in 'final' mean release (well tested, etc)
10
 
bzr_plugin_version = (0, 6, 12, 'final', 0)
11
 
 
12
 
bzr_commands = ["git-import", "git-object", "git-refs", "git-apply"]
13
 
 
14
 
bzr_compatible_versions = [(3, x, 0) for x in [0]]
15
 
 
16
 
bzr_minimum_version = bzr_compatible_versions[0]
17
 
 
18
 
bzr_maximum_version = bzr_compatible_versions[-1]
19
 
 
20
 
bzr_control_formats = {"Git":{'.git/': None}}