Skip to content

Prep version 0.0.9 #190

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions packages/mbed-greentea/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

"""
mbed SDK
Copyright (c) 2011-2015 ARM Limited
Copyright (c) 2011-2019 ARM Limited

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -29,15 +29,21 @@


DESCRIPTION = "mbed 3.0 onwards test suite, codename Greentea. The test suite is a collection of tools that enable automated testing on mbed-enabled platforms"
OWNER_NAMES = 'Anna Bridge, Azim Khan'
OWNER_EMAILS = '[email protected], [email protected]'
OWNER_NAMES = 'Anna Bridge, Qinghao Shi'
OWNER_EMAILS = '[email protected], [email protected]'


# Utility function to cat in a file (used for the README)
def read(fname):
"""
Utility function to cat in a file (used for the README)
@param fname: the name of the file to read, relative to the directory containing this file
@return: The string content of the opened file
"""
return open(os.path.join(os.path.dirname(__file__), fname), encoding="utf-8").read()


setup(name='mbed-greentea',
version='1.7.1',
version='1.7.2',
description=DESCRIPTION,
long_description=read('README.md'),
author=OWNER_NAMES,
Expand All @@ -47,15 +53,15 @@ def read(fname):
url='https://github.com/ARMmbed/mbed-os-tools',
packages=find_packages(),
license="Apache-2.0",
test_suite = 'test',
test_suite='test',
entry_points={
"console_scripts": ["mbedgt=mbed_greentea.mbed_greentea_cli:main",],
},
install_requires=[
"mbed-os-tools==0.0.8",
"mbed-os-tools==0.0.9",
"mbed-host-tests>=1.5.0,<2"
],
tests_require = [
tests_require=[
"mock>=2"
]
)
19 changes: 12 additions & 7 deletions packages/mbed-host-tests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

"""
mbed SDK
Copyright (c) 2011-2016 ARM Limited
Copyright (c) 2011-2019 ARM Limited

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -28,16 +28,21 @@
from setuptools import find_packages

DESCRIPTION = "mbed tools used to flash, reset and supervise test execution for mbed-enabled devices"
OWNER_NAMES = 'Jimmy Brisson, Brian Daniels'
OWNER_EMAILS = '[email protected], Brian.Daniels@arm.com'
OWNER_NAMES = 'Qinghao Shi'
OWNER_EMAILS = 'qinghao.shi@arm.com'


# Utility function to cat in a file (used for the README)
def read(fname):
"""
Utility function to cat in a file (used for the README)
@param fname: the name of the file to read, relative to the directory containing this file
@return: The string content of the opened file
"""
return open(os.path.join(os.path.dirname(__file__), fname), encoding="utf8").read()


setup(name='mbed-host-tests',
version='1.5.7',
version='1.5.8',
description=DESCRIPTION,
long_description=read('README.md'),
long_description_content_type='text/markdown',
Expand All @@ -48,14 +53,14 @@ def read(fname):
url='https://github.com/ARMmbed/mbed-os-tools',
packages=find_packages(),
license="Apache-2.0",
test_suite = 'test',
test_suite='test',
entry_points={
"console_scripts":
["mbedhtrun=mbed_host_tests.mbedhtrun:main",
"mbedflsh=mbed_host_tests.mbedflsh:main"],
},
install_requires=[
"mbed-os-tools==0.0.8"
"mbed-os-tools==0.0.9"
],
tests_require=[
"mock>=2"
Expand Down
23 changes: 14 additions & 9 deletions packages/mbed-ls/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

"""
mbed SDK
Copyright (c) 2011-2018 ARM Limited
Copyright (c) 2011-2019 ARM Limited
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Expand All @@ -25,16 +25,21 @@
from setuptools import find_packages

DESCRIPTION = "mbed-ls is a Python module that detects and lists mbed-enabled devices connected to the host computer"
OWNER_NAMES = 'Jimmy Brisson, Brian Daniels'
OWNER_EMAILS = 'jimmy.brisson@arm.com, brian.daniels@arm.com'
OWNER_NAMES = 'Graham Hammond, Mark Edgeworth'
OWNER_EMAILS = 'Graham.Hammond@arm.com, Mark.Edgeworth@arm.com'


# Utility function to cat in a file (used for the README)
def read(fname):
"""
Utility function to cat in a file (used for the README)
@param fname: the name of the file to read, relative to the directory containing this file
@return: The string content of the opened file
"""
return open(os.path.join(os.path.dirname(__file__), fname), encoding="utf8").read()


setup(name='mbed-ls',
version='1.7.7',
version='1.7.8',
description=DESCRIPTION,
long_description=read('README.md'),
author=OWNER_NAMES,
Expand All @@ -44,21 +49,21 @@ def read(fname):
url='https://github.com/ARMmbed/mbed-os-tools',
packages=find_packages(),
license="Apache-2.0",
test_suite = 'test',
test_suite='test',
entry_points={
"console_scripts": [
"mbedls=mbed_lstools:mbedls_main",
],
},
install_requires=[
"PrettyTable>=0.7.2",
"mbed-os-tools==0.0.8"
"mbed-os-tools==0.0.9"
],
tests_require = [
tests_require=[
"mock>=2",
"pytest>=3"
],
extras_require = {
extras_require={
"colorized_logs": ["colorlog"]
}
)
2 changes: 1 addition & 1 deletion src/mbed_os_tools/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.8
0.0.9