scripts/install.py

branch
eric7
changeset 10162
e7040c88b39e
parent 10122
f9b87800ecf2
child 10174
6aac1022f330
child 10177
27a6e35c64ed
equal deleted inserted replaced
10161:b0ccdb47acde 10162:e7040c88b39e
1590 if not isSudo and isPipOutdated(): 1590 if not isSudo and isPipOutdated():
1591 updatePip() 1591 updatePip()
1592 print("\n") 1592 print("\n")
1593 1593
1594 # perform dependency checks 1594 # perform dependency checks
1595 if sys.version_info < (3, 8, 0) or sys.version_info >= (3, 12, 0): 1595 if sys.version_info < (3, 8, 0) or sys.version_info >= (3, 13, 0):
1596 print("Sorry, you must have Python 3.8.0 or higher, but less 3.12.0.") 1596 print("Sorry, you must have Python 3.8.0 or higher, but less 3.13.0.")
1597 print("Yours is {0}.".format(".".join(str(v) for v in sys.version_info[:3]))) 1597 print("Yours is {0}.".format(".".join(str(v) for v in sys.version_info[:3])))
1598 exit(5) 1598 exit(5)
1599 1599
1600 try: 1600 try:
1601 import xml.etree # __IGNORE_WARNING__ 1601 import xml.etree # __IGNORE_WARNING__

eric ide

mercurial