From a00c64f4c5ff11c8717e188333038e004d6fd14d Mon Sep 17 00:00:00 2001 From: jtpereyda Date: Wed, 8 Aug 2018 00:14:46 -0700 Subject: [PATCH] fix pytest to 3.6.4 to mitigate v3.7 bug --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5d764f55..9c55a510 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,12 @@ def find_version(*path_elements): 'Flask==0.10.1', 'impacket', 'colorama', 'attrs', 'click', 'psutil'], extras_require={ # This list is duplicated in tox.ini. Make sure to change both! - 'dev': ['check-manifest', 'mock', 'pytest', 'pytest-bdd', 'netifaces', 'ipaddress'], + 'dev': ['check-manifest', + 'mock', + 'pytest==3.6.4', # temporary measure -- 3.7 was causing pytest-bdd failures + 'pytest-bdd', + 'netifaces', + 'ipaddress'], }, classifiers=[ 'Development Status :: 4 - Beta',