File tree Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.8.7 (TBD)
2
+ * Bug Fixes
3
+ * Make sure pip installs version 0.8.x if you have python 2.7
4
+
1
5
## 0.8.6 (May 27, 2018)
2
6
* Bug Fixes
3
- * Commands using the @with_argparser_and_unknown_args were not correctly recognized when tab completing
7
+ * Commands using the @with_argparser_and_unknown_args were not correctly recognized when tab completing
4
8
* Fixed issue where completion display function was overwritten when a submenu quits
5
9
* Fixed `` AttributeError `` on Windows when running a `` select `` command cause by ** pyreadline** not implementing `` remove_history_item ``
6
10
* Enhancements
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ def pyreadline_remove_history_item(pos):
229
229
pass
230
230
231
231
232
- __version__ = '0.8.6 '
232
+ __version__ = '0.8.7-rc1 '
233
233
234
234
# Pyparsing enablePackrat() can greatly speed up parsing, but problems have been seen in Python 3 in the past
235
235
pyparsing .ParserElement .enablePackrat ()
Original file line number Diff line number Diff line change 62
62
# The short X.Y version.
63
63
version = '0.8'
64
64
# The full version, including alpha/beta/rc tags.
65
- release = '0.8.6 '
65
+ release = '0.8.7-rc1 '
66
66
67
67
# The language for content autogenerated by Sphinx. Refer to documentation
68
68
# for a list of supported languages.
Original file line number Diff line number Diff line change 8
8
import setuptools
9
9
from setuptools import setup
10
10
11
- VERSION = '0.8.6 '
11
+ VERSION = '0.8.7-rc1 '
12
12
DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python"
13
- LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
14
- it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
15
- provides a simple API which is an extension of Python's built-in cmd module. cmd2 provides a wealth of features on top
13
+ LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make
14
+ it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It
15
+ provides a simple API which is an extension of Python's built-in cmd module. cmd2 provides a wealth of features on top
16
16
of cmd to make your life easier and eliminates much of the boilerplate code which would be necessary when using cmd.
17
17
18
18
The latest documentation for cmd2 can be read online here:
108
108
platforms = ['any' ],
109
109
py_modules = ["cmd2" ],
110
110
keywords = 'command prompt console cmd' ,
111
+ python_requires = '>=2.7' ,
111
112
install_requires = INSTALL_REQUIRES ,
112
113
extras_require = EXTRAS_REQUIRE ,
113
114
tests_require = TESTS_REQUIRE ,
Original file line number Diff line number Diff line change 26
26
27
27
28
28
def test_ver ():
29
- assert cmd2 .__version__ == '0.8.6 '
29
+ assert cmd2 .__version__ == '0.8.7-rc1 '
30
30
31
31
32
32
def test_empty_statement (base_app ):
You can’t perform that action at this time.
0 commit comments