Skip to content

Commit 2756f0a

Browse files
mark-edgeworthmadchutney
authored andcommitted
Updated version to 1.10.1 (#912)
* Updated version to 1.10.1 * Minimum Python 3 version is 3.4, requires mbed-os-tools 0.0.9
1 parent 69a650e commit 2756f0a

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

mbed/mbed.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
# Copyright (c) 2016-2019 ARM Limited, All Rights Reserved
3+
# Copyright (c) 2016-2019 Arm Limited, All Rights Reserved
44
# SPDX-License-Identifier: Apache-2.0
55

66
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -53,7 +53,7 @@
5353

5454

5555
# Application version
56-
ver = '1.10.0'
56+
ver = '1.10.1'
5757

5858
# Default paths to Mercurial and Git
5959
hg_cmd = 'hg'

setup.py

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2016 ARM Limited, All Rights Reserved
1+
# Copyright (c) 2016-2019 ARM Limited, All Rights Reserved
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -18,12 +18,12 @@
1818

1919
setup(
2020
name="mbed-cli",
21-
version="1.10.0",
21+
version="1.10.1",
2222
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_description,
2424
long_description_content_type="text/markdown",
2525
url='http://github.com/ARMmbed/mbed-cli',
26-
author='ARM mbed',
26+
author='Arm mbed',
2727
author_email='[email protected]',
2828
packages=["mbed"],
2929
entry_points={
@@ -32,15 +32,20 @@
3232
'mbed-cli=mbed.mbed:main',
3333
]
3434
},
35-
python_requires='>=2.7.10,!=3.0.*,!=3.1.*,<4',
35+
python_requires='>=2.7.10, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.0, !=3.4.1, !=3.4.2, <4',
3636
classifiers=(
37-
"Programming Language :: Python :: 2",
38-
"Programming Language :: Python :: 3",
37+
'Programming Language :: Python :: 2',
38+
'Programming Language :: Python :: 2.7',
39+
'Programming Language :: Python :: 3',
40+
'Programming Language :: Python :: 3.4',
41+
'Programming Language :: Python :: 3.5',
42+
'Programming Language :: Python :: 3.6',
43+
'Programming Language :: Python :: 3.7',
3944
"License :: OSI Approved :: Apache Software License",
4045
"Operating System :: OS Independent",
4146
),
4247
install_requires=[
4348
"pyserial>=3.0,<4.0",
44-
"mbed-os-tools<0.1.0",
49+
"mbed-os-tools>=0.0.9,<0.1.0",
4550
]
4651
)

0 commit comments

Comments
 (0)