summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2019-06-14 20:40:49 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2019-06-14 20:40:49 -0400
commit0598412960afcbd5fbe42d6cf100b7af658cd959 (patch)
treedb3b490fa05ef029012c02aa11a061b2634f1063 /README.md
parentddd07f9cd6d72baca1232ae98856cf3b3d564706 (diff)
downloadcmd2-git-0598412960afcbd5fbe42d6cf100b7af658cd959.tar.gz
Deprecate support for Python 3.4 and begin testing with Python 3.8 beta
Diffstat (limited to 'README.md')
-rwxr-xr-xREADME.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index cf79b7ac..562f539f 100755
--- a/README.md
+++ b/README.md
@@ -38,7 +38,7 @@ Main Features
- Unicode character support
- Good tab-completion of commands, sub-commands, file system paths, and shell commands
- Automatic tab-completion of `argparse` flags when using one of the `cmd2` `argparse` decorators
-- Support for Python 3.4+ on Windows, macOS, and Linux
+- Support for Python 3.5+ 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` or `load -t`
@@ -59,7 +59,7 @@ On all operating systems, the latest stable version of `cmd2` can be installed u
pip install -U cmd2
```
-cmd2 works with Python 3.4+ on Windows, macOS, and Linux. It is pure Python code with few 3rd-party dependencies.
+cmd2 works with Python 3.5+ on Windows, macOS, and Linux. It is pure Python code with few 3rd-party dependencies.
For information on other installation options, see
[Installation Instructions](https://cmd2.readthedocs.io/en/latest/install.html) in the cmd2