Check if the python version is sufficient
()
| 28 | |
| 29 | |
| 30 | def check_python_version(): |
| 31 | """ Check if the python version is sufficient """ |
| 32 | if sys.version_info < (2, 7, 3): |
| 33 | raise Exception("You will need to run this with Python >= 2.7.3") |
| 34 | |
| 35 | |
| 36 | def create_python_environment(source_dir, args): |