From 82b525f1fa3d279bc2558a941067d0f02b60fac2 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Thu, 5 May 2016 10:29:03 -0400 Subject: [PATCH] Add pycrypto explicitly Running "tox -e pip-missing-reqs" was broken around the time of the Mitaka release and we missed this requirement. nova/crypto.py:29 dist=pycrypto module=Crypto.PublicKey.RSA Essentially, since we are constrained using upper-constraints.txt and the upper-constraints.txt has an entry for pycrypto, we do not see a problem anywhere. The dependency was introduced in: If88beeb3983705621fe736995939ac20b2daf1f3 Closes-Bug: #1578047 Change-Id: I12978a6ca49524aa2256930617a259023e6908eb --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 3f73ac8dc759..4aaf74e8720c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,6 +13,7 @@ lxml>=2.3 # BSD Routes!=2.0,!=2.1,!=2.3.0,>=1.12.3;python_version=='2.7' # MIT Routes!=2.0,!=2.3.0,>=1.12.3;python_version!='2.7' # MIT cryptography!=1.3.0,>=1.0 # BSD/Apache-2.0 +pycrypto>=2.6 # Public Domain WebOb>=1.2.3 # MIT greenlet>=0.3.2 # MIT PasteDeploy>=1.5.0 # MIT