From 0911b55bc91d71dfac1788346a51311b3943d315 Mon Sep 17 00:00:00 2001 From: peusterm Date: Fri, 22 Sep 2017 08:47:08 +0200 Subject: [PATCH] Fix: Use networkx 1.11 due to major API change in recently released networkx 2.0 This is temporary until we migrated to the latest networkx API. Change-Id: Id735686098c8d8ab03f40f648d10aff31ba87129 Signed-off-by: peusterm --- ansible/install.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/install.yml b/ansible/install.yml index 61d12a2..0ee1e44 100755 --- a/ansible/install.yml +++ b/ansible/install.yml @@ -51,7 +51,7 @@ pip: name=argparse state=latest - name: install networkx - pip: name=networkx state=latest + pip: name=networkx version=1.11 - name: install six pip: name=six state=latest diff --git a/setup.py b/setup.py index c2903f1..a28df09 100755 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ setup(name='emuvim', 'pyaml', 'tabulate', 'argparse', - 'networkx', + 'networkx==1.11', 'six>=1.9', 'ryu', 'oslo.config', -- 2.17.1