# HG changeset patch
# User Augie Fackler <durin42@gmail.com>
# Date 1315955703 18000
#      Tue Sep 13 18:15:03 2011 -0500
# Node ID 78ca06c40b90400251fccba28cff3a1ce922a341
# Parent  9cdf881d51cd00e164fca6de78aed8d3ace92028
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.

diff --git a/setup.py b/setup.py
--- 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'],
 )