From d985c5a256bcf8f67e80235ba387599f448f2c49 Mon Sep 17 00:00:00 2001 From: Michal Arbet Date: Mon, 25 Jun 2018 16:06:18 +0200 Subject: Fix code to support networkx > 1.0 With the release of NetworkX 2.0 the reporting API was moved to view/iterator model. Many methods were moved from reporting lists or dicts to iterating over the information. Methods that used to return containers now return views and methods that returned iterators have been removed in networkx. Because of this change in NetworkX 2.0 , taskflow code have to be changed also to support networkx > 2.0 Change-Id: I23c226f37bd85c1e38039fbcb302a2d0de49f333 Closes-Bug: #1778115 --- test-requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test-requirements.txt') diff --git a/test-requirements.txt b/test-requirements.txt index 6304248..2f6805a 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -13,7 +13,7 @@ redis>=2.10.0 # MIT kombu!=4.0.2,>=4.0.0 # BSD # eventlet -eventlet!=0.18.3,!=0.20.1,!=0.21.0 # MIT +eventlet!=0.18.3,!=0.20.1,!=0.21.0,>=0.18.2 # MIT # database SQLAlchemy!=1.1.5,!=1.1.6,!=1.1.7,!=1.1.8,>=1.0.10 # MIT @@ -29,5 +29,6 @@ oslotest>=3.2.0 # Apache-2.0 mock>=2.0.0 # BSD testtools>=2.2.0 # MIT testscenarios>=0.4 # Apache-2.0/BSD +testrepository>=0.0.18 # Apache-2.0/BSD doc8>=0.6.0 # Apache-2.0 sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD -- cgit v1.2.1