Skip to content

Commit

Permalink
Merge pull request #104 from martinghunt/master
Browse files Browse the repository at this point in the history
Check dendropy found and version ok
  • Loading branch information
martinghunt authored Jul 20, 2016
2 parents 8e57b18 + 9a5e0d6 commit 3a99849
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ariba/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@


package_min_versions = {
'dendropy': '4.1.0',
'openpyxl': '1.6.2',
'pyfastaq': '3.12.0',
'pysam': '0.8.1',
Expand All @@ -31,7 +32,7 @@ def get_all_versions(raise_error=True):

python_packages_ok = True

for package in ['ariba', 'openpyxl', 'pyfastaq', 'pymummer', 'pysam']:
for package in ['ariba', 'dendropy', 'openpyxl', 'pyfastaq', 'pymummer', 'pysam']:
try:
exec('import ' + package)
version = eval(package + '.__version__')
Expand Down

0 comments on commit 3a99849

Please sign in to comment.