Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenweaver committed Jul 22, 2015
1 parent 9d0690e commit cd0ed63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sys.path.insert(0, join(split(abspath(__file__))[0], 'lib'))

setup(name='hivclustering',
version="0.1.1",
version="0.1.2",
description='HIV molecular clustering tools',
author='Sergei Kosakovsky Pond',
author_email='[email protected]',
Expand Down
3 changes: 2 additions & 1 deletion tests/centrality.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3.2
#!/usr/bin/env python3

from operator import itemgetter
import json
Expand Down Expand Up @@ -59,5 +59,6 @@ def test_degrees():
''' Ensure degrees are correct '''
patients = [k for k,v in network.nodes.items()]
expected = [9,9,18,15,12,6,15,12,9,3]
print(list(map(lambda x : x[0].degree == x[1], zip(patients,expected))))
assert all(map(lambda x : x[0].degree == x[1], zip(patients,expected)))

0 comments on commit cd0ed63

Please sign in to comment.