Skip to content

Commit a182064

Browse files
Merge pull request #675 from screamerbg/development
Bump to version 1.7.0 and add Python 3 compatiblity notes
2 parents 892f907 + 160259c commit a182064

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ Windows, Linux and Mac OS X support Mbed CLI. We're keen to learn about your exp
5454

5555
### Requirements
5656

57-
* **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.
57+
* **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/)
5858

5959
#### Mbed CLI and pip compatibility
6060

61-
<span class="notes">**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).</span>
61+
<span class="notes">**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.</span>
6262

6363

6464
* **Git and Mercurial** - Mbed CLI supports both Git and Mercurial repositories, so you need to install both:

mbed/mbed.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848

4949
# Application version
50-
ver = '1.6.0'
50+
ver = '1.7.0'
5151

5252
# Default paths to Mercurial and Git
5353
hg_cmd = 'hg'

pypi_readme.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
.. image:: https://circleci.com/gh/ARMmbed/mbed-cli.svg?style=svg
22

3-
mbed CLI is the name of the `ARM-mbed <https://mbed.org>`_ 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.
3+
Mbed CLI is the name of the `Arm Mbed <https://mbed.com>`_ 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.
44

55

66
Installation
77
============
8-
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.
8+
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.
99

10-
mbed CLI supports both Git and Mercurial repositories, so you'll also need to install Mercurial and Git.
10+
Mbed CLI supports both Git and Mercurial repositories, so you'll also need to install Mercurial and Git.
1111

1212
Get Started
1313
===========
1414
The best way to get started is to `read the documentation on GitHub <https://github.com/ARMmbed/mbed-cli/blob/master/README.md>`_.
1515

1616
License
1717
=======
18-
mbed CLI is licensed under Apache-2.0
18+
Mbed CLI is licensed under Apache-2.0

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919
setup(
2020
name="mbed-cli",
21-
version="1.6.0",
22-
description="ARM mbed command line tool for repositories version control, publishing and updating code from remotely hosted repositories (GitHub, GitLab and mbed.org), and invoking mbed OS own build system and export functions, among other operations",
21+
version="1.7.0",
22+
description="Arm Mbed command line tool for repositories version control, publishing and updating code from remotely hosted repositories (GitHub, GitLab and mbed.com), and invoking Mbed OS own build system and export functions, among other operations",
2323
long_description=LONG_DESC,
2424
url='http://github.com/ARMmbed/mbed-cli',
2525
author='ARM mbed',
@@ -32,5 +32,5 @@
3232
'mbed-cli=mbed.mbed:main',
3333
]
3434
},
35-
python_requires='>=2.7.10, <3',
35+
python_requires='>=2.7.10,!=3.0.*,!=3.1.*,<4',
3636
)

0 commit comments

Comments
 (0)