From 8dd0a090a377351fec9092389460702829883f9c Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Mon, 12 Jun 2017 05:33:30 +0200 Subject: Update modules/(test-)requirements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It updates requirements.txt and test-requirements.txt according to OpenStack stable/ocata. It also fixes install_requires and test_requires in modules/setup.py. Change-Id: I9290db34e7bc1c78200130dd6a67d2d33dbc388d Signed-off-by: Cédric Ollivier --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 8ac5cea..0dd635f 100644 --- a/setup.py +++ b/setup.py @@ -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"] ) -- cgit 1.2.3-korg