1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-03 03:42:35 +01:00

utils/types: Add version_tuple

Allow for `version_tuple` to be used more generically to enable
natural comparing of versions encoded as strings.
This commit is contained in:
Marc Bonnici
2019-06-28 11:58:41 +01:00
committed by setrofim
parent 8910234448
commit f46851a3b4
4 changed files with 12 additions and 8 deletions

View File

@@ -284,8 +284,8 @@ def apk_version_matches(path, version):
def loose_version_matching(config_version, apk_version):
config_version = config_version.split('.')
apk_version = apk_version.split('.')
config_version = version_tuple(config_version)
apk_version = version_tuple(apk_version)
if len(apk_version) < len(config_version):
return False # More specific version requested than available