From a9f0e5ba163b7eedfe7c23402123f7489318cea5 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Sun, 2 Jan 2022 14:33:04 -0500 Subject: [PATCH] Python 3.6 is EOL, require 3.7 --- src/gam/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gam/__main__.py b/src/gam/__main__.py index cd1f9a7f..58c95aea 100644 --- a/src/gam/__main__.py +++ b/src/gam/__main__.py @@ -37,10 +37,10 @@ def main(): # to break parallel operations with errors about extra -b # command line arguments set_start_method('fork') - if sys.version_info[0] < 3 or sys.version_info[1] < 6: + if sys.version_info[0] < 3 or sys.version_info[1] < 7: controlflow.system_error_exit( 5, - f'GAM requires Python 3.6 or newer. You are running %s.%s.%s. Please upgrade your Python version or use one of the binary GAM downloads.' + f'GAM requires Python 3.7 or newer. You are running %s.%s.%s. Please upgrade your Python version or use one of the binary GAM downloads.' % sys.version_info[:3]) sys.exit(gam.ProcessGAMCommand(sys.argv))