diff options
| author | Catherine Devlin <catherine.devlin@gmail.com> | 2011-07-20 23:23:09 -0400 |
|---|---|---|
| committer | Catherine Devlin <catherine.devlin@gmail.com> | 2011-07-20 23:23:09 -0400 |
| commit | 6e58471025072e8eef9c84e3f463d7dc0fb9eebb (patch) | |
| tree | bb1d59f59385c6dfc66cf736706e3fd213eeb916 | |
| parent | b4ae011674707191e820f2d2f08be1141b035c58 (diff) | |
| download | cmd2-git-6e58471025072e8eef9c84e3f463d7dc0fb9eebb.tar.gz | |
require pyparsing 1.5.6 for its Python 3 power
| -rwxr-xr-x | cmd2.py | 7 | ||||
| -rwxr-xr-x | setup.py | 2 |
2 files changed, 2 insertions, 7 deletions
@@ -40,12 +40,7 @@ import platform import copy from code import InteractiveConsole, InteractiveInterpreter from optparse import make_option - -if sys.version_info[0] > 2: - import pyparsing_py3 as pyparsing - raw_input = input -else: - import pyparsing +import pyparsing __version__ = '0.6.3' @@ -7,7 +7,7 @@ except ImportError: return ['sqlpython'] import sys -install_requires = ['pyparsing>=1.5.5'] +install_requires = ['pyparsing>=1.5.6'] setup( name="cmd2", version="0.6.3", |
