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

Tags: bzr-git-0.1.0
Add tests for GitShaMap.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006-2009 Canonical Ltd
2
2
 
3
3
# Authors: Robert Collins <robert.collins@canonical.com>
4
4
#          Jelmer Vernooij <jelmer@samba.org>
33
33
from bzrlib.commands import plugin_cmds
34
34
from bzrlib.trace import warning
35
35
 
36
 
MINIMUM_DULWICH_VERSION = (0, 1, 0)
37
 
COMPATIBLE_BZR_VERSIONS = [(1, 11, 0), (1, 12, 0)]
 
36
MINIMUM_DULWICH_VERSION = (0, 1, 1)
 
37
COMPATIBLE_BZR_VERSIONS = [(1, 13, 0)]
38
38
 
39
39
if getattr(sys, "frozen", None):
40
40
    # allow import additional libs from ./_lib for bzr.exe only
213
213
plugin_cmds.register_lazy("cmd_git_serve", [], "bzrlib.plugins.git.commands")
214
214
plugin_cmds.register_lazy("cmd_git_import", [], "bzrlib.plugins.git.commands")
215
215
 
 
216
def get_rich_root_format():
 
217
    return bzrdir.format_registry.make_bzrdir("1.9-rich-root")
 
218
 
216
219
def test_suite():
217
220
    from bzrlib.plugins.git import tests
218
221
    return tests.test_suite()