From b903b039f83556f2bbca1b7cfe12c3fb87e3e509 Mon Sep 17 00:00:00 2001 From: Viktor Ashirov Date: Jul 02 2018 13:42:34 +0000 Subject: Issue 49820 - lib389 requires wrong python ldap library Bug Description: python3-ldap [1] is not the same as python-ldap [2]. [1] https://pypi.org/project/python3-ldap/ [2] https://pypi.org/project/python-ldap/ Fix Description: Update setup.py and requirements.txt. https://pagure.io/389-ds-base/issue/49820 Reviewed by: mreynolds (Thanks!) --- diff --git a/src/lib389/requirements.txt b/src/lib389/requirements.txt index 842bdc4..2b2582d 100644 --- a/src/lib389/requirements.txt +++ b/src/lib389/requirements.txt @@ -5,4 +5,4 @@ python-dateutil six argcomplete argparse-manpage -python3-ldap +python-ldap diff --git a/src/lib389/setup.py b/src/lib389/setup.py index a14e806..52122b6 100644 --- a/src/lib389/setup.py +++ b/src/lib389/setup.py @@ -76,7 +76,7 @@ setup( 'six', 'argcomplete', 'argparse-manpage', - 'python3-ldap', + 'python-ldap', ], cmdclass={