From fff3e1474f3204ed5b426f7016891b361048ec96 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Fri, 5 Jun 2015 15:59:43 +0200 Subject: [PATCH] Distribute our own version of netifaces working with python 3 Fix #97 --- requirements.txt | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8dc813ff..35469ed7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -netifaces==0.10.4 +gns3-netifaces==0.10.4.1 jsonschema==2.4.0 aiohttp==0.14.4 Jinja2==2.7.3 diff --git a/setup.py b/setup.py index f72b781d..21c69b57 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,8 @@ class PyTest(TestCommand): sys.exit(errcode) -dependencies = ["aiohttp>=0.14.4", +dependencies = ["gns3-netifaces>=0.10.4.1", + "aiohttp>=0.14.4", "jsonschema>=2.4.0", "Jinja2>=2.7.3", "raven>=5.2.0"]