1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-09-08 21:11:54 +01:00

setup.py: Use version_helper to generate devlib version

Instead of parsing the text of the file to extract the current version
use the version_helper to access the newly added version tuple.
This commit is contained in:
Marc Bonnici
2019-02-20 14:05:32 +00:00
committed by setrofim
parent 441eea9897
commit c0d8a98d90
2 changed files with 10 additions and 19 deletions

View File

@@ -53,10 +53,11 @@ from devlib.host import LocalConnection
from devlib.utils.android import AdbConnection
from devlib.utils.ssh import SshConnection, TelnetConnection, Gem5Connection
from devlib.utils.version import get_devlib_version, get_commit as __get_commit
from devlib.utils.version import (get_devlib_version as __get_devlib_version,
get_commit as __get_commit)
__version__ = get_devlib_version()
__version__ = __get_devlib_version()
__commit = __get_commit()
if __commit: