Skip to content
Snippets Groups Projects
Commit 6f4f6902 authored by dilawar's avatar dilawar :ant:
Browse files

chore: version bumped.

parent 4b4282c8
No related branches found
No related tags found
1 merge request!6Hotfix: fix to assert error post installation
Pipeline #3770 failed with stages
in 2 minutes
...@@ -14,8 +14,8 @@ console = Console() ...@@ -14,8 +14,8 @@ console = Console()
def set_logger_level(level_name: str): def set_logger_level(level_name: str):
"""Set the global logging level""" """Set the global logging level"""
assert level_name in ["INFO", "DEBUG", "WARNING"] assert level_name.upper() in ["INFO", "DEBUG", "WARNING"]
lvl = logging.getLevelName(level_name) lvl = logging.getLevelName(level_name.upper())
logger.setLevel(lvl) logger.setLevel(lvl)
for handler in logger.handlers: for handler in logger.handlers:
handler.setLevel(lvl) handler.setLevel(lvl)
......
[tool.poetry] [tool.poetry]
name = "bitia" name = "bitia"
version = "0.2.0" version = "0.2.0a2"
description = "BioInformatics Tool for Infrastructure Automation (BiTIA) CLI utility." description = "BioInformatics Tool for Infrastructure Automation (BiTIA) CLI utility."
authors = ["Dilawar Singh <dilawar@subcom.tech>"] authors = ["Dilawar Singh <dilawar@subcom.tech>"]
readme = "README.md" readme = "README.md"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment