From 2f8eebec9bfae741ce127cb832d654fbfe9fd4ca Mon Sep 17 00:00:00 2001 From: avish mehta Date: Tue, 10 Sep 2024 15:36:38 +0530 Subject: [PATCH 1/3] Update alert.py --- basepair/modules/alert/alert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basepair/modules/alert/alert.py b/basepair/modules/alert/alert.py index d0f7f4d6..6f7fb2f5 100644 --- a/basepair/modules/alert/alert.py +++ b/basepair/modules/alert/alert.py @@ -14,7 +14,7 @@ def get_instance(cfg=None): # pylint: disable=dangerous-default-value if cfg is None: cfg = {} driver = cfg.get('driver') - driver_module = importlib.import_module(f'modules.alert.drivers.{driver}') + driver_module = importlib.import_module(f'basepair.modules.alert.drivers.{driver}') INSTANCES[driver] = INSTANCES.get(driver) or driver_module.Instance(cfg) INSTANCES[driver].set_config(cfg) return INSTANCES[driver] From f3de60978495e6f8876a7549f538688e29e1e10a Mon Sep 17 00:00:00 2001 From: avish mehta Date: Tue, 10 Sep 2024 15:38:53 +0530 Subject: [PATCH 2/3] change version --- basepair/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basepair/__init__.py b/basepair/__init__.py index e2c6c573..e2721169 100644 --- a/basepair/__init__.py +++ b/basepair/__init__.py @@ -12,7 +12,7 @@ # Exposing the storage wrapper __title__ = 'basepair' -__version__ = '2.1.10' +__version__ = '2.1.11.rc1' __copyright__ = 'Copyright [2017] - [2024] Basepair INC' From c4809e50f759caa2536cf8df3bb9d3cddf18d386 Mon Sep 17 00:00:00 2001 From: avish mehta Date: Tue, 10 Sep 2024 15:40:46 +0530 Subject: [PATCH 3/3] Update __init__.py --- basepair/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basepair/__init__.py b/basepair/__init__.py index e2721169..bfd7d35f 100644 --- a/basepair/__init__.py +++ b/basepair/__init__.py @@ -12,7 +12,7 @@ # Exposing the storage wrapper __title__ = 'basepair' -__version__ = '2.1.11.rc1' +__version__ = '2.1.11' __copyright__ = 'Copyright [2017] - [2024] Basepair INC'