summaryrefslogtreecommitdiffstats
path: root/ipasetup.py.in
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2016-11-30 11:10:36 +0100
committerMartin Babinsky <mbabinsk@redhat.com>2016-11-30 17:33:32 +0100
commit289982e02fa6bef700fe2c1900ddbed864876faa (patch)
treee1551ddfaaf30f6695942fc11bf1597d3d228a20 /ipasetup.py.in
parent235f68524767c1eb2e12fb6d1d9f6a520414c583 (diff)
downloadfreeipa-289982e02fa6bef700fe2c1900ddbed864876faa.tar.gz
freeipa-289982e02fa6bef700fe2c1900ddbed864876faa.tar.xz
freeipa-289982e02fa6bef700fe2c1900ddbed864876faa.zip
Require python-cryptography >= 1.3.1
python-cryptography versions < 1.3 no longer compile with recent OpenSSL 1.0.2 versions. In order to build wheels, a more recent version of cryptography is required. 1.3.1 is the oldest well tested version (RHEL 7.3) that is known to work with FreeIPA. Bump up in freeipa.spec is not required for technical reasons. The problem only affects PyPI packages. It's policy to keep requirements in sync. https://fedorahosted.org/freeipa/ticket/6468 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'ipasetup.py.in')
-rw-r--r--ipasetup.py.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipasetup.py.in b/ipasetup.py.in
index 08c9178f8..2200e4b2f 100644
--- a/ipasetup.py.in
+++ b/ipasetup.py.in
@@ -52,7 +52,7 @@ class build_py(setuptools_build_py):
PACKAGE_VERSION = {
- 'cryptography': 'cryptography >= 0.9',
+ 'cryptography': 'cryptography >= 1.3.1',
'dnspython': 'dnspython >= 1.13',
'gssapi': 'gssapi > 1.2.0',
'ipaclient': 'ipaclient == @VERSION@',