From 34727d496f35bfe7d7ec49a63ec30c1c59716877 Mon Sep 17 00:00:00 2001 From: dhenschen Date: Thu, 18 Apr 2019 22:29:55 -0400 Subject: [PATCH] Add hardcoded pip dependency versions Prior to this commit, The Travis CI and local unit test suites were failing. All of the unit test failures were related to version incompatibility issues with new pip dependencies. This commit adds explicit package versions of click and Twisted. The versions used are from the most passing Travis CI job at: https://travis-ci.org/digidotcom/python-wpa-supplicant/builds/248812490 --- dev-requirements.txt | 2 ++ setup.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index 00df1cc..6db27dc 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -6,3 +6,5 @@ nose-cov sphinx pyandoc tox +click==6.7 +Twisted==17.5.0 diff --git a/setup.py b/setup.py index 82f2edc..d9e2b19 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,8 @@ install_requires = [ 'txdbus>=1.0.1', - 'click', + 'click==6.7', + 'Twisted==17.5.0', 'six', ]