UI/UserInterface.py

branch
5_0_x
changeset 769
a7cac3e1f1e3
parent 356
4deb1aa438db
child 792
a13346916170
equal deleted inserted replaced
764:c5cbcc0b288d 769:a7cac3e1f1e3
5607 @return flag indicating, that the version is newer than the required one 5607 @return flag indicating, that the version is newer than the required one
5608 (boolean) 5608 (boolean)
5609 """ 5609 """
5610 if Version.startswith("@@"): 5610 if Version.startswith("@@"):
5611 # development version, always newer 5611 # development version, always newer
5612 return True 5612 if required.endswith(".99"):
5613 return False
5614 else:
5615 return True
5613 5616
5614 if "-snapshot-" in Version: 5617 if "-snapshot-" in Version:
5615 # check snapshot version 5618 # check snapshot version
5616 if snapshot is None: 5619 if snapshot is None:
5617 return True 5620 return True

eric ide

mercurial