Bump minimum Python version (#1581)

Bump minimum Python version to 3.6.
This commit is contained in:
Rick Gibbed
2020-03-30 17:37:32 -05:00
committed by GitHub
parent 5f5e281e8c
commit a0f486b0fa
2 changed files with 6 additions and 8 deletions

View File

@@ -38,8 +38,8 @@ def main():
sys.exit(1)
# Check python version.
if not sys.version_info[:2] >= (3, 4):
print('ERROR: Python 3.4+ must be installed and on PATH')
if not sys.version_info[:2] >= (3, 6):
print('ERROR: Python 3.6+ must be installed and on PATH')
sys.exit(1)
# Grab Visual Studio version and execute shell to set up environment.