From ddc4c531df413d27e13633c0c02fa8fd5c29e584 Mon Sep 17 00:00:00 2001 From: Peter Vegh Date: Wed, 9 Sep 2020 17:16:22 +0100 Subject: [PATCH 1/2] Biopython <1.78 --- dna_features_viewer/GraphicRecord/GraphicRecord.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dna_features_viewer/GraphicRecord/GraphicRecord.py b/dna_features_viewer/GraphicRecord/GraphicRecord.py index e1a67f2..c04abe2 100644 --- a/dna_features_viewer/GraphicRecord/GraphicRecord.py +++ b/dna_features_viewer/GraphicRecord/GraphicRecord.py @@ -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 From f080b6172bcb39bdb27c0632412953c2e6395d52 Mon Sep 17 00:00:00 2001 From: Peter Vegh Date: Sun, 20 Sep 2020 19:37:02 +0100 Subject: [PATCH 2/2] v3.0.3 --- dna_features_viewer/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dna_features_viewer/version.py b/dna_features_viewer/version.py index 131942e..8d1c862 100644 --- a/dna_features_viewer/version.py +++ b/dna_features_viewer/version.py @@ -1 +1 @@ -__version__ = "3.0.2" +__version__ = "3.0.3"