/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: Robert Collins
  • Date: 2010-05-06 07:48:22 UTC
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100506074822-0bsgf2j4h8jx0xkk
Added ``bzrlib.tests.matchers`` as a place to put matchers, along with
our first in-tree matcher. See the module docstring for details.
(Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bzr_plugin_name = "git"
2
 
 
3
 
dulwich_minimum_version = (0, 8, 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, 6, 2, 'final', 0)
9
 
 
10
 
bzr_commands = ["git-import", "git-object", "git-refs", "git-apply"]
11
 
 
12
 
bzr_compatible_versions = [(2, x, 0) for x in [3, 4]]
13
 
 
14
 
bzr_minimum_version = bzr_compatible_versions[0]
15
 
 
16
 
bzr_maximum_version = bzr_compatible_versions[-1]
17
 
 
18
 
bzr_control_formats = {"Git":{'.git/': None}}