Skip to content

Commit 71797d5

Browse files
committed
Merge branch 'dev'
v0.1.10 Biopython <=1.77 compatibility fix
2 parents e38757c + 6194ba3 commit 71797d5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

genedom/biotools.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
try:
1212
# Biopython <1.78
1313
from Bio.Alphabet import DNAAlphabet
14+
15+
has_dna_alphabet = True
1416
except ImportError:
1517
# Biopython >=1.78
1618
has_dna_alphabet = False

genedom/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.9"
1+
__version__ = "0.1.10"

0 commit comments

Comments
 (0)