Source code for dls_bxflow_epsic.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_bxflow_lib.version
from dls_bxflow_epsic import __version__ as dls_bxflow_epsic_version
# ----------------------------------------------------------
[docs]def version() -> str:
"""
Version of the dls_bxflow_epsic package as a string.
"""
return dls_bxflow_epsic_version
# ----------------------------------------------------------