glenn-jocher commited on
Commit
a19406b
1 Parent(s): 37675e1

Update minimum Python>=3.7.0 (#7247)

Browse files
Files changed (1) hide show
  1. utils/general.py +1 -1
utils/general.py CHANGED
@@ -295,7 +295,7 @@ def check_git_status():
295
  LOGGER.info(emojis(s)) # emoji-safe
296
 
297
 
298
- def check_python(minimum='3.6.2'):
299
  # Check current python version vs. required python version
300
  check_version(platform.python_version(), minimum, name='Python ', hard=True)
301
 
 
295
  LOGGER.info(emojis(s)) # emoji-safe
296
 
297
 
298
+ def check_python(minimum='3.7.0'):
299
  # Check current python version vs. required python version
300
  check_version(platform.python_version(), minimum, name='Python ', hard=True)
301