Skip to content

Commit

Permalink
Merge pull request #41 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 f60a796 + f080b61 commit 6ace5cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions dna_features_viewer/GraphicRecord/GraphicRecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,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 dna_features_viewer/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.0.2"
__version__ = "3.0.3"

0 comments on commit 6ace5cd

Please sign in to comment.