scripts/install.py

branch
eric7
changeset 10959
377ef1594e36
parent 10886
e46fcabe7a3f
child 10983
8b9913066b8c
equal deleted inserted replaced
10958:79842be466d3 10959:377ef1594e36
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

eric ide

mercurial