15.2.613. camcops_server.tools.print_latest_github_version

camcops_server/tools/print_latest_github_version.py


Copyright (C) 2012, University of Cambridge, Department of Psychiatry. Created by Rudolf Cardinal (rnc1001@cam.ac.uk).

This file is part of CamCOPS.

CamCOPS is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

CamCOPS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with CamCOPS. If not, see <https://www.gnu.org/licenses/>.


Print latest version tag found in CamCOPS repository.

Test code for version sorting:

import random
from semantic_version import Version
version_strings = [
    "2.3.9",
    "2.3.10",
    "2.3.11",
]
versions = [Version(v) for v in version_strings]
random.shuffle(versions)
versions.sort()
print(versions)