()
| 12 | |
| 13 | |
| 14 | def check_python(): |
| 15 | version = sys.version_info |
| 16 | |
| 17 | if version >= (3, 10): |
| 18 | return True, f"Python {version.major}.{version.minor}" |
| 19 | |
| 20 | return False, ("Python 3.10+ required\nFix: install Python 3.10 or newer") |
| 21 | |
| 22 | |
| 23 | def check_playwright(): |
no outgoing calls