File tree Expand file tree Collapse file tree 6 files changed +11
-4
lines changed
Expand file tree Collapse file tree 6 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1+ ## 0.8.4 (April 10, 2018)
2+ * Bug Fixes
3+ * Fixed conditional dependency issue in setup.py that was in 0.8.3.
4+
15## 0.8.3 (April 09, 2018)
26* Bug Fixes
37 * Fixed `` help `` command not calling functions for help topics
Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ class RlType(Enum):
183183 except ImportError :
184184 pass
185185
186- __version__ = '0.8.3 '
186+ __version__ = '0.8.4 '
187187
188188# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
189189pyparsing .ParserElement .enablePackrat ()
Original file line number Diff line number Diff line change 6262# The short X.Y version.
6363version = '0.8'
6464# The full version, including alpha/beta/rc tags.
65- release = '0.8.3 '
65+ release = '0.8.4 '
6666
6767# The language for content autogenerated by Sphinx. Refer to documentation
6868# for a list of supported languages.
Original file line number Diff line number Diff line change 1+ [bdist_wheel]
2+ universal = 1
Original file line number Diff line number Diff line change 88import setuptools
99from setuptools import setup
1010
11- VERSION = '0.8.3 '
11+ VERSION = '0.8.4 '
1212DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
1313LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
1414it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
6969EXTRAS_REQUIRE = {
7070 # Windows also requires pyreadline to ensure tab completion works
7171 ":sys_platform=='win32'" : ['pyreadline' ],
72+ ":sys_platform!='win32'" : ['wcwidth' ],
7273 # Python 3.4 and earlier require contextlib2 for temporarily redirecting stderr and stdout
7374 ":python_version<'3.5'" : ['contextlib2' ],
7475 # Python 3.3 and earlier require enum34 backport of enum module from Python 3.4
Original file line number Diff line number Diff line change 2525
2626
2727def test_ver ():
28- assert cmd2 .__version__ == '0.8.3 '
28+ assert cmd2 .__version__ == '0.8.4 '
2929
3030
3131def test_empty_statement (base_app ):
You can’t perform that action at this time.
0 commit comments