mkvenv: Fix comparison

TODO: pick to master?
This commit is contained in:
Florian Bruhin 2022-05-16 13:08:02 +02:00
parent b5aa728c30
commit ff1e165be1
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ def _version_key(v):
try:
return tuple(int(v) for c in v.split('.'))
except ValueError:
return 999
return (999,)
def pyqt_versions() -> List[str]: