diff --git a/phables b/phables index 47cb35c..891873a 100755 --- a/phables +++ b/phables @@ -21,7 +21,7 @@ from phables_utils.output_utils import (write_component_info, write_path, __author__ = "Vijini Mallawaarachchi" __copyright__ = "Copyright 2022, Phables Project" __license__ = "MIT" -__version__ = "0.1.0a1" +__version__ = "0.1.0a2" __maintainer__ = "Vijini Mallawaarachchi" __email__ = "viji.mallawaarachchi@gmail.com" __status__ = "Development" @@ -176,7 +176,7 @@ def main( # Setup logger # ---------------------------------------------------------------------- - logger = logging.getLogger("phables 0.1.0a1") + logger = logging.getLogger("phables 0.1.0a2") logger.setLevel(logging.DEBUG) logging.captureWarnings(True) formatter = logging.Formatter("%(asctime)s - %(levelname)s - %(message)s") diff --git a/phables_utils/FD_Inexact.py b/phables_utils/FD_Inexact.py index 986bb90..43df075 100644 --- a/phables_utils/FD_Inexact.py +++ b/phables_utils/FD_Inexact.py @@ -6,7 +6,7 @@ import networkx as nx # create logger -logger = logging.getLogger("phables 0.1.0a1") +logger = logging.getLogger("phables 0.1.0a2") def read_input(graphfile, number_subpath): diff --git a/phables_utils/edge_graph_utils.py b/phables_utils/edge_graph_utils.py index f4ab1de..a7553cf 100644 --- a/phables_utils/edge_graph_utils.py +++ b/phables_utils/edge_graph_utils.py @@ -7,7 +7,7 @@ from igraph import * # Create logger -logger = logging.getLogger("phables 0.1.0a1") +logger = logging.getLogger("phables 0.1.0a2") class BidirectionalError(Exception): diff --git a/setup.py b/setup.py index 5f01dd8..c0b4311 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setuptools.setup( name="phables", - version="0.1.0a1", + version="0.1.0a2", zip_safe=True, author="Vijini Mallawaarachchi", author_email="viji.mallawaarachchi@gmail.com",