summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2018-05-28 15:01:09 -0600
committerkotfu <kotfu@kotfu.net>2018-05-28 15:01:09 -0600
commit65016d2a58f58f042ab7017f156e1054602363dd (patch)
tree879354647f66a743894ebd37cdbeb7e601584eef /setup.py
parent90765495f6385f8765bad94c5286b2da48bf1ba5 (diff)
downloadcmd2-git-65016d2a58f58f042ab7017f156e1054602363dd.tar.gz
Update version to 0.9.1rc1 to try and fix #421
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index b2c921f7..f19931b9 100755
--- a/setup.py
+++ b/setup.py
@@ -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,