changeset 435:78ca06c40b90

setup.py: correct dependency to 0.8.0 I incorrectly specified 0.8.1, which is the *next* release of dulwich, not 0.8.0, which works just fine.
author Augie Fackler <durin42@gmail.com>
date Tue, 13 Sep 2011 18:15:03 -0500
parents 9cdf881d51cd
children 556c3c586c4a
files setup.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py
+++ b/setup.py
@@ -19,5 +19,5 @@
     keywords='hg git mercurial',
     license='GPLv2',
     packages=['hggit'],
-    install_requires=['dulwich>=0.8.1'],
+    install_requires=['dulwich>=0.8.0'],
 )