From be8162e66a0d7b190221cf5a47aed0418458f028 Mon Sep 17 00:00:00 2001 From: Marco Huenseler Date: Fri, 4 Aug 2017 17:51:11 +0200 Subject: [PATCH] Fix #1: Add specific version requirements for ldap3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b10822a..748baa9 100644 --- a/setup.py +++ b/setup.py @@ -8,5 +8,5 @@ setup( description="LDAP Authentication Plugin for Radicale 2", author="Raoul Thill", license="GNU GPL v3", - install_requires=["radicale>=2.0", "ldap3"], + install_requires=["radicale >= 2.0", "ldap3 >= 2.3, < 2.4"], packages=["radicale_auth_ldap"])