felicity-lims/felicity/version/version.py

20 lines
348 B
Python
Raw Normal View History

2024-07-28 03:52:31 +08:00
__version__ = "0.1.0"
2024-04-06 15:15:04 +08:00
class FelicityVersion:
_version = __version__
@classmethod
def version(cls):
return cls._version
@staticmethod
def get_updates():
"""get latest release"""
return {}
@staticmethod
def upgrade():
"""get latest changes from github and upgrade"""
return {}