From 9816e0140d04a007ad589473f5747f14e83b004b Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 21 Aug 2014 17:38:40 +0200 Subject: [PATCH] Require click>=3.1 See https://github.com/mitsuhiko/click/issues/200 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 400e28b..2751bc0 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ setup( 'console_scripts': ['vdirsyncer = vdirsyncer.cli:main'] }, install_requires=[ - 'click>=2.0', + 'click>=3.1', 'requests', 'lxml', 'icalendar>=3.6',