mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 16:33:11 +08:00
19 lines
348 B
Python
19 lines
348 B
Python
__version__ = '0.1.0'
|
|
|
|
|
|
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 {}
|