Merge "Update modules/(test-)requirements"
authorMorgan Richomme <morgan.richomme@orange.com>
Wed, 14 Jun 2017 01:48:38 +0000 (01:48 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Wed, 14 Jun 2017 01:48:38 +0000 (01:48 +0000)
modules/requirements.txt
modules/setup.py
modules/test-requirements.txt

index bae55dc..2793dd4 100644 (file)
@@ -1,3 +1,3 @@
-paramiko==2.1.2
-mock==1.3.0
-requests==2.9.1
+paramiko>=2.0 # LGPLv2.1+
+mock>=2.0 # BSD
+requests!=2.12.2,>=2.10.0 # Apache-2.0
index 8ac5cea..0dd635f 100644 (file)
@@ -17,9 +17,9 @@ setup(
     package_data={
     },
     url="https://www.opnfv.org",
-    install_requires=["paramiko>=2.0.1",
-                      "mock==1.3.0",
-                      "nose==1.3.7",
-                      "coverage==4.1",
-                      "requests==2.9.1"]
+    install_requires=["paramiko>=2.0",
+                      "mock>=2.0",
+                      "requests!=2.12.2,>=2.10.0"],
+    test_requires=["nose",
+                   "coverage>=4.0"]
 )
index 99d7f13..c264540 100644 (file)
@@ -1,6 +1,2 @@
-# The order of packages is significant, because pip processes them in the order
-# of appearance. Changing the order has an impact on the overall integration
-# process, which may cause wedges in the gate later.
-
-nose
-coverage
+nose # LGPL
+coverage>=4.0 # Apache-2.0