From 953ced42b3bdc97ece3ba1835418f4cbe8891c00 Mon Sep 17 00:00:00 2001 From: Vladimir Diaz Date: Wed, 14 Jun 2017 15:49:10 -0400 Subject: [PATCH] Bump version to 0.10.5 and use cryptography >= 1.9.0 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1a436f68..da20631e 100755 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ setup( name = 'securesystemslib', - version = '0.10.4', + version = '0.10.5', description = 'A library that provides cryptographic and general-purpose routines for Secure Systems Lab projects at NYU', long_description = long_description, author = 'https://www.updateframework.com', @@ -96,7 +96,7 @@ 'Topic :: Security', 'Topic :: Software Development' ], - install_requires = ['six', 'cryptography>=1.4.0', 'pycrypto>=2.6.1', 'pynacl>=0.2.3'], + install_requires = ['six', 'cryptography>=1.9.0', 'pycrypto>=2.6.1', 'pynacl>=0.2.3'], packages = find_packages(exclude=['tests']), scripts = [] )