diff --git a/mindpipe/__init__.py b/mindpipe/__init__.py index e037e45c..378329c8 100644 --- a/mindpipe/__init__.py +++ b/mindpipe/__init__.py @@ -2,6 +2,6 @@ __author__ = """Dileep Kishore""" __email__ = "dkishore@bu.edu" -__version__ = "0.4.2" +__version__ = "0.5.0" from .main import Lineage, Network, Otu diff --git a/setup.cfg b/setup.cfg index 69219db1..a204cec7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.2 +current_version = 0.5.0 commit = True tag = True @@ -24,7 +24,7 @@ test = pytest [tool:pytest] addopts = --ignore mindpipe collect_ignore = ['setup.py'] -filterwarnings = +filterwarnings = ignore::DeprecationWarning ignore::PendingDeprecationWarning diff --git a/setup.py b/setup.py index a8aa0470..fb7b4298 100644 --- a/setup.py +++ b/setup.py @@ -58,6 +58,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/dileep-kishore/mindpipe", - version="0.4.2", + version="0.5.0", zip_safe=False, )