From 13a5ad2a4d8bf200c284a00dbf0ac49e20bc7b41 Mon Sep 17 00:00:00 2001 From: Augie Fackler Date: Sat, 23 Aug 2014 12:45:27 -0400 Subject: [PATCH] setup: require newer dulwich so we can always pass an opener to HttpGitClient --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4f2b8be903..73a8e00362 100644 --- a/setup.py +++ b/setup.py @@ -27,5 +27,5 @@ project that is in Git. A bridger of worlds, this plugin be. packages=['hggit'], package_data={ 'hggit': ['help/git.rst'] }, include_package_data=True, - install_requires=['dulwich>=0.9.4'] + extra_req, + install_requires=['dulwich>=0.9.7'] + extra_req, )