From b7be4cf2be89ab94525db6365cfc8135156e3cfe Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Wed, 11 Apr 2018 20:10:17 +0200 Subject: [PATCH] Fix Python dependencies Fix typo in dependencies and require release of python-ldap. Signed-off-by: Christian Heimes Reviewed-By: Alexander Bokovoy --- ipasetup.py.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipasetup.py.in b/ipasetup.py.in index cc5634671..1257d5677 100644 --- a/ipasetup.py.in +++ b/ipasetup.py.in @@ -78,10 +78,10 @@ PACKAGE_VERSION = { 'ipaplatform': 'ipaplatform == {}'.format(VERSION), 'ipapython': 'ipapython == {}'.format(VERSION), 'ipaserver': 'ipaserver == {}'.format(VERSION), - 'jwcrypto': 'jwcrpyto >= 0.4.2', + 'jwcrypto': 'jwcrypto >= 0.4.2', 'kdcproxy': 'kdcproxy >= 0.3', 'netifaces': 'netifaces >= 0.10.4', - 'python-ldap': 'python-ldap >= 3.0.0b1', # install --pre + 'python-ldap': 'python-ldap >= 3.0.0', 'python-yubico': 'python-yubico >= 1.2.3', 'qrcode': 'qrcode >= 5.0', }