diff --git a/README.md b/README.md index 10baa00b..e4ce1e61 100755 --- a/README.md +++ b/README.md @@ -54,11 +54,11 @@ Windows, Linux and Mac OS X support Mbed CLI. We're keen to learn about your exp ### Requirements -* **Python** - Mbed CLI is a Python script, so you'll need Python to use it. We test Mbed CLI with [version 2.7.11 of Python](https://www.python.org/downloads/release/python-2711/). It is not compatible with Python 3. +* **Python** - Mbed CLI is a Python script, so you'll need Python to use it. We test Mbed CLI with [version 2.7.11 of Python](https://www.python.org/downloads/release/python-2711/) and [version 3.6.0 of Python](https://www.python.org/downloads/release/python-360/) #### Mbed CLI and pip compatibility -**Note:** Mbed CLI toolchain versions older than 1.5.1 are **not compatible** with `pip` version 10.0 (or newer). Please use latest Mbed CLI with newer version of `pip`. More details in Mbed CLI issue [#657](https://github.com/ARMmbed/mbed-cli/issues/657). +**Note:** Mbed CLI versions older than 1.5.1 are **not compatible** with `pip` version 10.0 (or newer). Also Mbed CLI versions older than 1.7.0 support only Python 2. Please use latest Mbed CLI. * **Git and Mercurial** - Mbed CLI supports both Git and Mercurial repositories, so you need to install both: diff --git a/mbed/mbed.py b/mbed/mbed.py index e3db6599..14e3a002 100755 --- a/mbed/mbed.py +++ b/mbed/mbed.py @@ -47,7 +47,7 @@ # Application version -ver = '1.6.0' +ver = '1.7.0' # Default paths to Mercurial and Git hg_cmd = 'hg' diff --git a/pypi_readme.rst b/pypi_readme.rst index c5c38939..776932a9 100644 --- a/pypi_readme.rst +++ b/pypi_readme.rst @@ -1,13 +1,13 @@ .. image:: https://circleci.com/gh/ARMmbed/mbed-cli.svg?style=svg -mbed CLI is the name of the `ARM-mbed `_ command line tool, packaged as mbed-cli, which enables the full mbed workflow: repositories version control, maintaining dependencies, publishing code, updating from remotely hosted repositories (GitHub, GitLab and mbed.org), and invoking ARM mbed's own build system and export functions, among other operations. +Mbed CLI is the name of the `Arm Mbed `_ command line tool, packaged as mbed-cli, which enables the full mbed workflow: repositories version control, maintaining dependencies, publishing code, updating from remotely hosted repositories (GitHub, GitLab and mbed.com), and invoking Arm Mbed's own build system and export functions, among other operations. Installation ============ -mbed CLI is a Python script, so you'll need Python installed in order to use it. mbed CLI was tested with Python 2.7. +Mbed CLI is a Python script, so you'll need Python installed in order to use it. mbed CLI was tested with Python 2.7 and Python 3.6. -mbed CLI supports both Git and Mercurial repositories, so you'll also need to install Mercurial and Git. +Mbed CLI supports both Git and Mercurial repositories, so you'll also need to install Mercurial and Git. Get Started =========== @@ -15,4 +15,4 @@ The best way to get started is to `read the documentation on GitHub