check-java-versions: provide more useful output
This commit is contained in:
parent
2c4b10220a
commit
a1481876ab
1 changed files with 2 additions and 1 deletions
|
@ -37,4 +37,5 @@ versions = [LooseVersion(package_version(package))
|
|||
wanted_version = max(versions)
|
||||
old_versions = [version for version in versions if version < wanted_version]
|
||||
|
||||
print('Too old:', old_versions)
|
||||
print('Wanted:', str(wanted_version))
|
||||
print('Too old:', [str(version) for version in old_versions])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue