aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Huenseler <marcoh.huenseler+git@gmail.com>2020-03-10 16:28:43 +0100
committerGitHub <noreply@github.com>2020-03-10 16:28:43 +0100
commita396d8da41cff7ba234cc9c28d69fa5258c452ef (patch)
treed68d8607a7afa831cb8b5c046c4488c204a50269
parentMerge pull request #8 from indication/master (diff)
parentRemoved the upper version bound of LDAP version (diff)
downloadradicale_auth_ldap-master.tar.gz
radicale_auth_ldap-master.tar.bz2
radicale_auth_ldap-master.zip
Merge pull request #10 from bu3tt1/masterHEADmaster
Removed the upper version bound of LDAP version
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 748baa9..eb6e257 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 >= 2.3, < 2.4"],
+ install_requires=["radicale >= 2.0", "ldap3 >= 2.3"],
packages=["radicale_auth_ldap"])
bgstack15