/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: Martin Pool
  • Date: 2005-08-04 22:04:40 UTC
  • Revision ID: mbp@sourcefrog.net-20050804220440-99562df8151d1ac5
- add pending merge from aaron

Show diffs side-by-side

added added

removed removed

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