diff options
author | kotfu <kotfu@kotfu.net> | 2018-05-28 15:01:09 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-05-28 15:01:09 -0600 |
commit | 65016d2a58f58f042ab7017f156e1054602363dd (patch) | |
tree | 879354647f66a743894ebd37cdbeb7e601584eef /setup.py | |
parent | 90765495f6385f8765bad94c5286b2da48bf1ba5 (diff) | |
download | cmd2-git-65016d2a58f58f042ab7017f156e1054602363dd.tar.gz |
Update version to 0.9.1rc1 to try and fix #421
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5,7 +5,7 @@ Setuptools setup file, used to install or test 'cmd2' """ from setuptools import setup -VERSION = '0.9.0' +VERSION = '0.9.1rc1' DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python" LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It @@ -38,8 +38,8 @@ Main features: Usable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd. -Version 0.9.0+ of cmd2 supports Python 3.4+ only. If you wish to use cmd2 with Python 2.7, then please install version -0.8.6 or earlier. +Version 0.9.0+ of cmd2 supports Python 3.4+ only. If you wish to use cmd2 with Python 2.7, then +please install version 0.8.x. """ CLASSIFIERS = list(filter(None, map(str.strip, |