scripts/install-server.py

branch
eric7
changeset 10959
377ef1594e36
parent 10801
5859861e7a1f
child 11000
f8371a2dd08f
equal deleted inserted replaced
10958:79842be466d3 10959:377ef1594e36
414 if not isSudo and isPipOutdated(): 414 if not isSudo and isPipOutdated():
415 updatePip() 415 updatePip()
416 print("\n") 416 print("\n")
417 417
418 # perform dependency checks 418 # perform dependency checks
419 if sys.version_info < (3, 8, 0) or sys.version_info >= (3, 13, 0): 419 if sys.version_info < (3, 8, 0) or sys.version_info >= (3, 14, 0):
420 print("Sorry, you must have Python 3.8.0 or higher, but less 3.13.0.") 420 print("Sorry, you must have Python 3.8.0 or higher, but less 3.14.0.")
421 print("Yours is {0}.".format(".".join(str(v) for v in sys.version_info[:3]))) 421 print("Yours is {0}.".format(".".join(str(v) for v in sys.version_info[:3])))
422 exit(5) 422 exit(5)
423 423
424 requiredModulesList = { 424 requiredModulesList = {
425 # key is pip project name 425 # key is pip project name

eric ide

mercurial