From 300aec33a3e5299dd3bf3996578c2822914de512 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Tue, 13 Aug 2013 13:23:35 -0400 Subject: Tighten requirements on cmd2 Work around for https://bitbucket.org/catherinedevlin/cmd2/issue/6/packaging-bug Change-Id: I8a18825d0660c21649a8d838635832959eee8a40 --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 00fe75e..88094a2 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,9 @@ except IOError: install_requires = [ 'PrettyTable>=0.6,<0.8', - 'cmd2>=0.6.4', + # Restrict cliff from bringing in cmd2 0.6.6 until the problem + # with the Python 3-only code is resolved. + 'cmd2>=0.6.4,<0.6.6', ] # We need a different version of PyParsing, depending on which version -- cgit v1.2.1