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 |