From 9290b9132f0c6d4b1f6d4cf00a6f3bf586d407be Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sun, 19 Oct 2014 12:28:33 +0200 Subject: [PATCH] Specify minimum versions for dependencies --- docs/troubleshooting.rst | 5 ----- setup.py | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/docs/troubleshooting.rst b/docs/troubleshooting.rst index 468e5b3..3e8ce14 100644 --- a/docs/troubleshooting.rst +++ b/docs/troubleshooting.rst @@ -9,8 +9,3 @@ Troubleshooting supply it as a parameter to ``verify`` in your config file, e.g.:: verify = /usr/share/ca-certificates/cacert.org/cacert.org_root.crt - -- **During sync an error occurs: TypeError: request() got an unexpected keyword - argument 'verify'** - - You need to update your version of requests. diff --git a/setup.py b/setup.py index 2751bc0..35ad5ae 100644 --- a/setup.py +++ b/setup.py @@ -39,8 +39,8 @@ setup( }, install_requires=[ 'click>=3.1', - 'requests', - 'lxml', + 'requests>=2.1', + 'lxml>=3.0', 'icalendar>=3.6', 'requests_toolbelt>=0.3.0' ],