Skip to content

Commit

Permalink
Merge pull request #2 from Edinburgh-Genome-Foundry/dev
Browse files Browse the repository at this point in the history
Biopython <=1.77 compatibility fix
  • Loading branch information
veghp committed Sep 20, 2020
2 parents 28f4ec1 + 6e04d33 commit 23f7fae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions bandwitch/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
try:
# Biopython <1.78
from Bio.Alphabet import DNAAlphabet

has_dna_alphabet = True
except ImportError:
# Biopython >=1.78
has_dna_alphabet = False
Expand Down
2 changes: 1 addition & 1 deletion bandwitch/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.2"
__version__ = "0.3.3"

0 comments on commit 23f7fae

Please sign in to comment.