From 8357e8b1131030659ce80755cdf3e55450935fad Mon Sep 17 00:00:00 2001 From: Kristoffer Sahlin Date: Mon, 2 May 2016 17:28:03 -0400 Subject: [PATCH] updated dependency requirement on mathstats and bumped version number --- runBESST | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/runBESST b/runBESST index bf1e46b..15fa3c9 100755 --- a/runBESST +++ b/runBESST @@ -384,7 +384,7 @@ other.add_argument("-max_contig_overlap", dest="max_contig_overlap", type=int, d help="BESST checks for overlapping ends in contigs that are adjacent in a scaffold. This parameter sets the maximum identical overlap to search for, default is 200. ") -other.add_argument('--version', action='version', version='%(prog)s 2.2.3') +other.add_argument('--version', action='version', version='%(prog)s 2.2.4') diff --git a/setup.py b/setup.py index f87f56c..c9aef7a 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='BESST', - version='2.2.3', + version='2.2.4', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), classifiers=[ "Development Status :: 4 - Beta", @@ -24,6 +24,6 @@ long_description=open(os.path.join(os.getcwdu(), 'README.md')).read(), install_requires=['pysam>=0.7', 'networkx>=1.9', - 'mathstats>=0.2.3', + 'mathstats>=0.2.4', 'scipy>=0.9'], )