# HG changeset patch
# User Dan Villiom Podlaski Christiansen <danchr@gmail.com>
# Date 1624026140 -7200
#      Fri Jun 18 16:22:20 2021 +0200
# Node ID e95c26f2a2a363374b213c60033c88b0b1f061b4
# Parent  9d0eb5ad087c5d24c1a057964df371671b599399
setup: bump Dulwich requirement to 0.19.3

Dulwich 0.19.3, release in June 2018, added a few string contants.
While at it, adjust README to be more accurate

diff --git a/README.rst b/README.rst
--- a/README.rst
+++ b/README.rst
@@ -27,8 +27,14 @@
 
 This plugin is implemented entirely in Python — there are no Git
 binary dependencies, and you do not need to have Git installed on your
-system. The only dependencies are Mercurial 4.4 or later and a
-relatively recent Dulwich.
+system. The only dependencies are:
+
+* Mercurial 5.2
+* Dulwich 0.19.3
+* Python 3.6
+
+Please note that these are the earliest versions known to work; later
+versions generally work better.
 
 Installing
 ==========
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -37,6 +37,6 @@
     zip_safe=True,
     python_requires='>=3.6',
     install_requires=[
-        'dulwich>=0.19.0',
+        'dulwich>=0.19.3',
     ],
 )