diff --git a/pytoda/__init__.py b/pytoda/__init__.py index 2bdfb4ea..8b7242d5 100644 --- a/pytoda/__init__.py +++ b/pytoda/__init__.py @@ -1,2 +1,2 @@ name = 'pytoda' -__version__ = '1.0.1' +__version__ = '1.0.2' diff --git a/pytoda/proteins/protein_language.py b/pytoda/proteins/protein_language.py index 3d800fd7..f62dd9ff 100644 --- a/pytoda/proteins/protein_language.py +++ b/pytoda/proteins/protein_language.py @@ -107,8 +107,17 @@ def load(filepath: str) -> 'ProteinLanguage': Returns: ProteinLanguage: the loaded Protein language object. """ - with open(filepath, 'rb') as f: - protein_language = dill.load(f) + try: + with open(filepath, 'rb') as f: + protein_language = dill.load(f) + except TypeError: + # Necessary to load python3.7 pickled objects with >=3.8 + # For details see: https://github.com/uqfoundation/dill/pull/406 + storage = dill._dill._reverse_typemap['CodeType'] + dill._dill._reverse_typemap['CodeType'] = dill._dill._create_code + with open(filepath, 'rb') as f: + protein_language = dill.load(f) + dill._dill._reverse_typemap['CodeType'] = storage return protein_language @staticmethod diff --git a/pytoda/smiles/smiles_language.py b/pytoda/smiles/smiles_language.py index 03ca3b13..628477d8 100644 --- a/pytoda/smiles/smiles_language.py +++ b/pytoda/smiles/smiles_language.py @@ -176,8 +176,17 @@ def load(filepath: str) -> 'SMILESLanguage': warnings.warn( "Loading languages will use a text files in the future", FutureWarning ) - with open(filepath, 'rb') as f: - smiles_language = dill.load(f) + try: + with open(filepath, 'rb') as f: + smiles_language = dill.load(f) + except TypeError: + # Necessary to load python3.7 pickled objects with >=3.8: + # For details see: https://github.com/uqfoundation/dill/pull/406 + storage = dill._dill._reverse_typemap['CodeType'] + dill._dill._reverse_typemap['CodeType'] = dill._dill._create_code + with open(filepath, 'rb') as f: + smiles_language = dill.load(f) + dill._dill._reverse_typemap['CodeType'] = storage return smiles_language @staticmethod