diff options
| author | Catherine Devlin <catherine.devlin@gmail.com> | 2013-02-19 05:46:34 -0500 |
|---|---|---|
| committer | Catherine Devlin <catherine.devlin@gmail.com> | 2013-02-19 05:46:34 -0500 |
| commit | 8637165067003294ddf20a3229160b5701b276c2 (patch) | |
| tree | f24102949d0f3c193a7ac4f95a604544d5a0011c | |
| parent | 720e40f652111da7e6ce1f84b75acb1fe268d2cb (diff) | |
| parent | 09995d8f5ab10ee6dd7c1963b16365fa8ed62fc4 (diff) | |
| download | cmd2-git-8637165067003294ddf20a3229160b5701b276c2.tar.gz | |
account for pyparsing 2.0.0's support of Python 3 onlyy
| -rwxr-xr-x | setup.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -7,7 +7,11 @@ except ImportError: 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", |
