# HG changeset patch # User Catherine Devlin # Date 1361266392 18000 # Node ID a5f3d5a89d6c02d6acd27cb6128311bc9cd87870 # Parent 9e0fd9da25c6a4ed0cc076c3ea129b10002f74ba pyparsing 2.0.0 only if on Python3 diff -r 9e0fd9da25c6 -r a5f3d5a89d6c setup.py --- a/setup.py Thu Aug 25 16:27:53 2011 -0400 +++ b/setup.py Tue Feb 19 04:33:12 2013 -0500 @@ -7,7 +7,11 @@ return ['sqlpython'] import sys -install_requires = ['pyparsing>=1.5.6'] +if sys.version_info.major < 3: + install_requires = ['pyparsing == 1.5.7'] +else: + install_requires = ['pyparsing >= 2.0.0'] + setup( name="cmd2", version="0.6.4",