(minimum='3.7.0')
| 362 | |
| 363 | |
| 364 | def check_python(minimum='3.7.0'): |
| 365 | # Check current python version vs. required python version |
| 366 | check_version(platform.python_version(), minimum, name='Python ', hard=True) |
| 367 | |
| 368 | |
| 369 | def check_version(current='0.0.0', minimum='0.0.0', name='version ', pinned=False, hard=False, verbose=False): |
no test coverage detected