diff --git a/fm_agent/mbedfm.py b/fm_agent/mbedfm.py index a16eeb1..3c5c5f3 100644 --- a/fm_agent/mbedfm.py +++ b/fm_agent/mbedfm.py @@ -32,6 +32,7 @@ def get_version(): def print_version(): print(get_version()) + return True def print_models(): print(list_fastmodels()) diff --git a/setup.py b/setup.py index 9a1e47c..a4ed679 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ """ mbed SDK -Copyright (c) 2018-2019 ARM Limited +Copyright (c) 2018-2021 ARM Limited Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -19,7 +19,7 @@ See the License for the specific language governing permissions and limitations under the License. -Author: Przemyslaw Wirkus +Author: Qinghao Shi """ import os @@ -38,7 +38,7 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname), encoding="utf-8").read() setup(name='mbed-fastmodel-agent', - version='1.0', + version='2.0', description=DESCRIPTION, long_description=read('README.md'), entry_points = {'console_scripts': ['mbedfm=fm_agent.mbedfm:main']}, @@ -53,7 +53,7 @@ def read(fname): include_package_data=True, install_requires=[ "PrettyTable>=0.7.2", - "mbed-host-tests>=1.4.1", + "mbed-host-tests>=1.5.0", "mbed-greentea>=1.5.0" ] )