From ec682dc9ee9538dde9d8a8b05f6511e2e649ebe1 Mon Sep 17 00:00:00 2001 From: Martin Hunt Date: Thu, 9 Jul 2015 11:45:30 +0100 Subject: [PATCH 1/2] nose required by tests, not install --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f3883f6..3e15176 100644 --- a/setup.py +++ b/setup.py @@ -41,8 +41,8 @@ url='https://github.com/sanger-pathogens/iva', scripts=glob.glob('scripts/*'), test_suite='nose.collector', + tests_require=['nose >= 1.3'], install_requires=[ - 'nose >= 1.3', 'pyfastaq >= 3.0.1', 'networkx >= 1.7', 'pysam >= 0.8.1' From 9d5eb9035910689e63ffe05ef3ac2d3e357b893c Mon Sep 17 00:00:00 2001 From: Martin Hunt Date: Thu, 9 Jul 2015 11:47:13 +0100 Subject: [PATCH 2/2] Version bump --- iva/common.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/iva/common.py b/iva/common.py index cf2c231..df61456 100644 --- a/iva/common.py +++ b/iva/common.py @@ -2,7 +2,7 @@ import os import sys import subprocess -version = '0.11.6' +version = '0.11.7' class abspathAction(argparse.Action): def __call__(self, parser, namespace, value, option_string): diff --git a/setup.py b/setup.py index 3e15176..9777f40 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( name='iva', - version='0.11.6', + version='0.11.7', description='Iterative Virus Assembler', packages = find_packages(), package_data={'iva': ['gage/*', 'ratt/*', 'read_trim/*']},