diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-02-20 20:26:07 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-02-20 20:26:07 -0500 |
commit | 811a7302eef99b9f67bfcdde3400322b7557dbab (patch) | |
tree | f96381edfdb6a31585e7ab3e3e05ded9d41731ec | |
parent | 67ea0627879e10e47380482156b1421862e3c956 (diff) | |
download | cmd2-git-811a7302eef99b9f67bfcdde3400322b7557dbab.tar.gz |
Updated README and CHANGELOG
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rwxr-xr-x | README.md | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fe609ed..911df477 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## 2.0.0 (TBD, 2021) * Breaking changes + * `cmd2` 2.0 supports Python 3.6+ (removed support for Python 3.5) * Argparse Completion / Settables * Replaced `choices_function` / `choices_method` with `choices_provider`. * Replaced `completer_function` / `completer_method` with `completer`. @@ -38,7 +38,7 @@ Main Features - Unicode character support - Good tab completion of commands, subcommands, file system paths, and shell commands - Automatic tab completion of `argparse` flags when using one of the `cmd2` `argparse` decorators -- Support for Python 3.5+ on Windows, macOS, and Linux +- Support for Python 3.6+ 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 `run_script -t` @@ -63,7 +63,7 @@ On all operating systems, the latest stable version of `cmd2` can be installed u pip install -U cmd2 ``` -cmd2 works with Python 3.5+ on Windows, macOS, and Linux. It is pure Python code with few 3rd-party dependencies. +cmd2 works with Python 3.6+ 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/overview/installation.html) in the cmd2 |