From fb42d11a83ed04d2d6d91aba511ea166d39b7d45 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Thu, 20 Sep 2018 11:10:37 +0100 Subject: [PATCH] setup: Update devlib dependency version number Ensure that a sufficiently up to date version of devlib is installed and enable of installing directly from github to satisfy the requirements. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7790de26..1c2d8e68 100755 --- a/setup.py +++ b/setup.py @@ -83,12 +83,13 @@ params = dict( 'colorama', # Printing with colors 'pyYAML', # YAML-formatted agenda parsing 'requests', # Fetch assets over HTTP - 'devlib>=1.0.0', # Interacting with devices + 'devlib>=1.0.dev1', # Interacting with devices 'louie-latest', # callbacks dispatch 'wrapt', # better decorators 'pandas>=0.23.0', # Data analysis and manipulation 'future', # Python 2-3 compatiblity ], + dependency_links=['https://github.com/ARM-software/devlib/tarball/master#egg=devlib-1.0.dev1'], extras_require={ 'other': ['jinja2'], 'test': ['nose', 'mock'],