From 6d0f48867246109271a044f772015ac89e115751 Mon Sep 17 00:00:00 2001 From: Vasyl Horbachenko Date: Sat, 13 Oct 2018 04:44:59 +0300 Subject: [PATCH] updated version compatibility check --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index a098a56c..0d6339e2 100755 --- a/__init__.py +++ b/__init__.py @@ -43,7 +43,7 @@ def is_version_compatible(save_version): if current_version_components == save_version_components: return True - if save_version in ["1.4_rc1", "1.4_rc2", "1.4_rc3"]: + if save_version in ["1.4_rc1", "1.4_rc2", "1.4_rc3", "1.4_rc4", "1.4_rc5"]: return False if current_version_components[:2] == save_version_components[:2]: