# HG changeset patch
# User Georges Racinet <georges.racinet@octobus.net>
# Date 1606680173 -3600
#      Sun Nov 29 21:02:53 2020 +0100
# Node ID cdc11a4d00bc6d2bcdb70696392df99ba3c504f5
# Parent  81faed161c2ec436fb1723bfb3d1465b0e94a480
Requiring attrs

This made 1.1.2 unusable outside of dev environments.

Thought it was automatically provided because Mercurial uses it.
Big mistake, Mercurial vendors it. Of course can't be detected by
a pytest session...

diff --git a/install-requirements.txt b/install-requirements.txt
--- a/install-requirements.txt
+++ b/install-requirements.txt
@@ -4,3 +4,4 @@
 dulwich
 requests
 requests_unixsocket==0.2.0
+attrs~=20.3.0
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@
 
 setup(
     name='heptapod',
-    version='1.1.2',
+    version='1.1.3',
     author='Georges Racinet',
     author_email='georges.racinet@octobus.net',
     url='https://foss.heptapod.net/heptapod/py-heptapod',