From d9c75f801f9d381a6f2dc22b791d2851f0187b3b Mon Sep 17 00:00:00 2001 From: kabeor Date: Fri, 12 Aug 2022 19:46:42 +0800 Subject: [PATCH] Temporarily mask Python versions that are not supported by the EVM module --- qiling/arch/evm/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/qiling/arch/evm/__init__.py b/qiling/arch/evm/__init__.py index 1dcd2791f..2f003ebe7 100644 --- a/qiling/arch/evm/__init__.py +++ b/qiling/arch/evm/__init__.py @@ -1,5 +1,9 @@ import sys +# python 3.10 has not been supported yet in the latest blake2b-py release +if sys.version_info >= (3,10): + sys.exit('Sorry, Python > 3.10 is not supported for now') + # Ensure we can reach 1024 frames of recursion # EVM_RECURSION_LIMIT = 1024 * 12