Skip to content

Commit

Permalink
DEV: Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Dec 5, 2022
1 parent c01e0ed commit 5138ed4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions phables
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = "[email protected]"
__status__ = "Development"
Expand Down Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion phables_utils/FD_Inexact.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion phables_utils/edge_graph_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setuptools.setup(
name="phables",
version="0.1.0a1",
version="0.1.0a2",
zip_safe=True,
author="Vijini Mallawaarachchi",
author_email="[email protected]",
Expand Down

0 comments on commit 5138ed4

Please sign in to comment.