From 70ac43f5361d2ab627e498a9a37d2493766eaa23 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Fri, 5 Jun 2015 15:43:01 +0200 Subject: [PATCH] remove dependency against graphviz and matplotlib, that easily break the whole install because of their C libraries dependencies --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c4311b49..ef584b0d 100755 --- a/setup.py +++ b/setup.py @@ -56,7 +56,10 @@ setup( install_requires = [ "ipaddr", "networkx", - "pygraphviz", - "matplotlib", + # refrain from mentioning these ones that are not exactly crucial + # and that have additional, non-python, dependencies + # that can easily break the whole install + # "matplotlib", + # "pygraphviz", ] ) -- 2.43.0