From 3bc92b6b761df8fd1a35c6ca7d3be17700619736 Mon Sep 17 00:00:00 2001 From: Adrian Coveney Date: Tue, 26 Jul 2022 15:13:21 +0100 Subject: [PATCH] Add missing python-ldap version pinning --- apel-ssm.spec | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apel-ssm.spec b/apel-ssm.spec index c7d54cd2..449e5776 100644 --- a/apel-ssm.spec +++ b/apel-ssm.spec @@ -21,7 +21,7 @@ BuildArch: noarch BuildRequires: python-devel %endif -Requires: stomppy < 5.0.0, python-ldap, openssl +Requires: stomppy < 5.0.0, python-ldap < 3.4.0, openssl Requires(pre): shadow-utils %define ssmconf %_sysconfdir/apel diff --git a/setup.py b/setup.py index d7505cd5..57ff1fc2 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def main(): download_url='https://github.com/apel/ssm/releases', license='Apache License, Version 2.0', install_requires=[ - 'stomp.py<5.0.0', 'python-ldap', + 'stomp.py<5.0.0', 'python-ldap<3.4.0', ], extras_require={ 'AMS': ['argo-ams-library'],