diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-15 13:40:23 -0700 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-15 13:40:23 -0700 |
commit | 40eb6f6c9428a5a3a54cebef34da7dae173dd074 (patch) | |
tree | 0b9da95c9ac1a869e690c77884e2f9c42ca53d8b /README.md | |
parent | 1d66e283490d5ef5ad03597f3f8d42e87e371550 (diff) | |
download | cmd2-git-40eb6f6c9428a5a3a54cebef34da7dae173dd074.tar.gz |
Removed reference to Python 2 and 2.7 in some sections of the documentation
Diffstat (limited to 'README.md')
-rwxr-xr-x | README.md | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -34,10 +34,9 @@ Main Features - Settable environment parameters - Parsing commands with arguments using `argparse`, including support for sub-commands - Sub-menu support via the ``AddSubmenu`` decorator -- Unicode character support (*Python 3 only*) +- Unicode character support - Good tab-completion of commands, sub-commands, file system paths, and shell commands -- Python 3.4+ support -- Windows, macOS, and Linux support +- Support for Python 3.4+ on Windows, macOS, and Linux - Trivial to provide built-in help for all commands - Built-in regression testing framework for your applications (transcript-based testing) - Transcripts for use with built-in regression can be automatically generated from `history -t` @@ -57,12 +56,12 @@ On all operating systems, the latest stable version of `cmd2` can be installed u pip install -U cmd2 ``` -cmd2 works with Python 2.7 and Python 3.4+ on Windows, macOS, and Linux. It is pure Python code with +cmd2 works with Python 3.4+ on Windows, macOS, and Linux. It is pure Python code with the only 3rd-party dependencies being on [six](https://pypi.python.org/pypi/six), [pyparsing](http://pyparsing.wikispaces.com), and [pyperclip](https://github.com/asweigart/pyperclip). Windows has an additional dependency on [pyreadline](https://pypi.python.org/pypi/pyreadline). Non-Windows platforms have an additional dependency on [wcwidth](https://pypi.python.org/pypi/wcwidth). Finally, Python -3.4 and earlier have an additional dependency on [contextlib2](https://pypi.python.org/pypi/contextlib2). +3.4 has an additional dependency on [contextlib2](https://pypi.python.org/pypi/contextlib2). For information on other installation options, see [Installation Instructions](https://cmd2.readthedocs.io/en/latest/install.html) in the cmd2 |