From 0cc2a812297c68924dbe2fffe890e59a50d6382a Mon Sep 17 00:00:00 2001 From: Mathew Odden Date: Tue, 13 May 2014 22:46:12 -0500 Subject: [PATCH] Add argparse requirement for py26 The argparse module was included in the python standard library in python 2.7 or greater only. This should allow bash8 to work on python 2.6 as advertised. Change-Id: I87f47a796de734f261b85bc72414a30d56926dcd --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8646341..5458cbd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ pbr>=0.5.21,<1.0 -Babel>=0.9.6 \ No newline at end of file +argparse +Babel>=0.9.6