1609 if not isSudo and isPipOutdated(): |
1609 if not isSudo and isPipOutdated(): |
1610 updatePip() |
1610 updatePip() |
1611 print("\n") |
1611 print("\n") |
1612 |
1612 |
1613 # perform dependency checks |
1613 # perform dependency checks |
1614 if sys.version_info < (3, 8, 0) or sys.version_info >= (3, 13, 0): |
1614 if sys.version_info < (3, 8, 0) or sys.version_info >= (3, 14, 0): |
1615 print("Sorry, you must have Python 3.8.0 or higher, but less 3.13.0.") |
1615 print("Sorry, you must have Python 3.8.0 or higher, but less 3.14.0.") |
1616 print("Yours is {0}.".format(".".join(str(v) for v in sys.version_info[:3]))) |
1616 print("Yours is {0}.".format(".".join(str(v) for v in sys.version_info[:3]))) |
1617 exit(5) |
1617 exit(5) |
1618 |
1618 |
1619 if ( |
1619 if ( |
1620 importlib.util.find_spec("xml") is None |
1620 importlib.util.find_spec("xml") is None |