install.py

changeset 5675
c6bfe7b10b01
parent 5652
d1b65f380408
child 5711
50b6867ffcd3
--- a/install.py	Mon Apr 03 18:44:16 2017 +0200
+++ b/install.py	Mon Apr 03 18:46:15 2017 +0200
@@ -1128,12 +1128,12 @@
     
     # perform dependency checks
     print("Python Version: {0:d}.{1:d}.{2:d}".format(*sys.version_info[:3]))
-    if sys.version_info < (2, 7, 0):
-        print('Sorry, you must have Python 2.7.0 or higher or '
-              'Python 3.3.0 or higher.')
+    if sys.version_info < (2, 7, 10):
+        print('Sorry, you must have Python 2.7.10 or higher or '
+              'Python 3.4.0 or higher.')
         exit(5)
-    elif sys.version_info < (3, 3, 0) and sys.version_info[0] == 3:
-        print('Sorry, you must have Python 3.3.0 or higher.')
+    elif sys.version_info < (3, 4, 0) and sys.version_info[0] == 3:
+        print('Sorry, you must have Python 3.4.0 or higher.')
         exit(5)
     if sys.version_info > (3, 9, 9):
         print('Sorry, eric6 requires Python 3 or Python 2 for running.')

eric ide

mercurial