mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
19 lines
371 B
Python
19 lines
371 B
Python
__version__ = "0.1.1"
|
|
|
|
|
|
class FelicityVersion:
|
|
_version = __version__
|
|
|
|
@classmethod
|
|
def version(cls) -> str:
|
|
return cls._version
|
|
|
|
@staticmethod
|
|
def get_updates() -> dict:
|
|
"""get latest release"""
|
|
return {}
|
|
|
|
@staticmethod
|
|
def upgrade() -> dict:
|
|
"""get latest changes from github and upgrade"""
|
|
return {}
|