mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Correct PyPI package dependencies
* Remove unused install requires from ipapython * Add missing requirements to ipaserver * Correct dependencies for yubico otptoken * Add explicit dependency on cffi for csrgen * Python 2 uses python-ldap, Python 3 pyldap https://pagure.io/freeipa/issue/6875 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
This commit is contained in:
committed by
Martin Basti
parent
38276d3473
commit
26ab51ddf4
@@ -41,16 +41,14 @@ if __name__ == '__main__':
|
||||
"cryptography",
|
||||
"dnspython",
|
||||
"gssapi",
|
||||
"jwcrypto",
|
||||
# "ipalib", # circular dependency
|
||||
"pyldap",
|
||||
"netaddr",
|
||||
"netifaces",
|
||||
"requests",
|
||||
"six",
|
||||
],
|
||||
extras_require={
|
||||
":python_version<'3'": ["enum34"],
|
||||
":python_version<'3'": ["enum34", "python-ldap"],
|
||||
":python_version>='3'": ["pyldap"],
|
||||
"install": ["dbus-python"], # for certmonger
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user