summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 13:40:23 -0700
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 13:40:23 -0700
commit40eb6f6c9428a5a3a54cebef34da7dae173dd074 (patch)
tree0b9da95c9ac1a869e690c77884e2f9c42ca53d8b /README.md
parent1d66e283490d5ef5ad03597f3f8d42e87e371550 (diff)
downloadcmd2-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-xREADME.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/README.md b/README.md
index 35befefc..b68dba47 100755
--- a/README.md
+++ b/README.md
@@ -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