Source code for soakdb3_lib.version
"""
The version of the package can be returned as a single string or a dict.
When a string, it comes from the package __version__.
When a dict, it also has __version__,
as well as versions of other depdency packages.
"""
from typing import Optional
import dls_mainiac_lib.version
import dls_servbase_lib.version
import dls_utilpack.version
from soakdb3_lib import __version__
# ----------------------------------------------------------
[docs]def version() -> str:
"""
Version of the soakdb3 package as a string.
"""
return __version__
# ----------------------------------------------------------