Skip to content

Commit

Permalink
Merge pull request #216 from tomquist/min-python-3.8
Browse files Browse the repository at this point in the history
Increase minimum Python version to 3.8
  • Loading branch information
reserve85 authored Jun 23, 2024
2 parents 7b30c2f + 9b86028 commit 7c51e48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HoymilesZeroExport.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@
logger.info('Log write to file: %s', ENABLE_LOG_TO_FILE)
logger.info('Python Version: ' + sys.version)
try:
assert sys.version_info >= (3,6)
assert sys.version_info >= (3,8)
except:
logger.info('Error: your Python version is too old, this script requires version 3.6 or newer. Please update your Python.')
logger.info('Error: your Python version is too old, this script requires version 3.8 or newer. Please update your Python.')
sys.exit()

def CastToInt(pValueToCast):
Expand Down

0 comments on commit 7c51e48

Please sign in to comment.