diff options
author | Victor Mireyev <victor@opennodecloud.com> | 2018-08-01 13:56:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-01 13:56:45 +0300 |
commit | 73d3f712b77f3810645d941fd762e60d9a3a3339 (patch) | |
tree | e7af06060c812a55e3e053ee68279465c4468f81 /setup.cfg | |
parent | 204a2c571958af721068d85fdf72892d2a76ad0b (diff) | |
download | pysaml2-73d3f712b77f3810645d941fd762e60d9a3a3339.tar.gz |
Specify minimal version for cryptography package
Otherwise if pysaml is installed with an older release of cryptography package it would fail with
AttributeError: '_RSAPrivateKey' object has no attribute 'sign'
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ scripts = tools/merge_metadata.py tools/parse_xsd2.py install_requires = - cryptography + cryptography >= 1.4 defusedxml future pyOpenSSL |