diff --git a/bento_lib/package.cfg b/bento_lib/package.cfg index 21340ae..5da7ba7 100644 --- a/bento_lib/package.cfg +++ b/bento_lib/package.cfg @@ -1,5 +1,5 @@ [package] name = bento_lib -version = 5.0.1 +version = 5.0.2 authors = David Lougheed, Paul Pillot author_emails = david.lougheed@mail.mcgill.ca, paul.pillot@computationalgenomics.ca diff --git a/bento_lib/types.py b/bento_lib/types.py index 48863aa..b86e1d9 100644 --- a/bento_lib/types.py +++ b/bento_lib/types.py @@ -1,4 +1,4 @@ -from typing import Literal, TypedDict, Union +from typing import TypedDict __all__ = [ "GA4GHServiceType", @@ -34,4 +34,8 @@ class GA4GHServiceInfo(_GA4GHServiceInfoBase, total=False): contactUrl: str documentationUrl: str url: str # Technically not part of spec; comes from service-registry - environment: Union[Literal["dev"], Literal["prod"]] + environment: str # TODO: Literal["dev", "prod"] if JetBrains fixes their inspection... + + # TODO: put these in their own Bento object? + git_tag: str + git_branch: str