Skip to content

Commit

Permalink
Update check_python(minimum=3.6.2) (#3548)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Jun 9, 2021
1 parent ef0b5c9 commit f8ec71e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def check_git_status(err_msg=', for updates see https://github.com/ultralytics/y
print(f'{e}{err_msg}')


def check_python(minimum='3.7.0', required=True):
def check_python(minimum='3.6.2', required=True):
# Check current python version vs. required python version
current = platform.python_version()
result = pkg.parse_version(current) >= pkg.parse_version(minimum)
Expand Down

0 comments on commit f8ec71e

Please sign in to comment.