Take copy of refs when invoking determine_wants callback.
[jelmer/dulwich.git] / setup.py
index 67f3b46ae73ac3e18cd5d601fc75aa1a49e2f655..f436c9ca55ea3c066ca493a1d90bb3086bf59448 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ except ImportError:
     has_setuptools = False
 from distutils.core import Distribution
 
-dulwich_version_string = '0.8.3'
+dulwich_version_string = '0.8.6'
 
 include_dirs = []
 # Windows MSVC support
@@ -52,7 +52,7 @@ if sys.platform == 'darwin' and os.path.exists('/usr/bin/xcodebuild'):
 setup_kwargs = {}
 
 if has_setuptools:
-    setup_kwargs['test_suite'] = 'dulwich.tests'
+    setup_kwargs['test_suite'] = 'dulwich.tests.test_suite'
 
 setup(name='dulwich',
       description='Python Git Library',