Skip to content

Commit 7c51e48

Browse files
authored
Merge pull request #216 from tomquist/min-python-3.8
Increase minimum Python version to 3.8
2 parents 7b30c2f + 9b86028 commit 7c51e48

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

HoymilesZeroExport.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@
8282
logger.info('Log write to file: %s', ENABLE_LOG_TO_FILE)
8383
logger.info('Python Version: ' + sys.version)
8484
try:
85-
assert sys.version_info >= (3,6)
85+
assert sys.version_info >= (3,8)
8686
except:
87-
logger.info('Error: your Python version is too old, this script requires version 3.6 or newer. Please update your Python.')
87+
logger.info('Error: your Python version is too old, this script requires version 3.8 or newer. Please update your Python.')
8888
sys.exit()
8989

9090
def CastToInt(pValueToCast):

0 commit comments

Comments
 (0)