From 809e58b301a9d614a010b3dbb3b573d455200cd0 Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Mon, 25 Mar 2024 08:48:49 -0400 Subject: [PATCH] Fix small typo --- bin/mepo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mepo b/bin/mepo index 9037d7de..fb10b0bc 100755 --- a/bin/mepo +++ b/bin/mepo @@ -6,7 +6,7 @@ import traceback # Version check if sys.version_info < (3, 9, 0): - sys.exit('ERROR: Python version needs to be >= 3.6.0') + sys.exit('ERROR: Python version needs to be >= 3.9.0') # Add direactory containing mepo to path SRC_D = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', 'src')