Changed the dependancy checker of the install script to require at least Python 2.7 or 3.3.

Sat, 05 Dec 2015 17:04:08 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 05 Dec 2015 17:04:08 +0100
changeset 4608
0d850eb60ea8
parent 4604
623f95f1531b
child 4610
93732395fc1d

Changed the dependancy checker of the install script to require at least Python 2.7 or 3.3.

install.py file | annotate | diff | comparison | revisions
--- a/install.py	Sat Dec 05 13:20:36 2015 +0100
+++ b/install.py	Sat Dec 05 17:04:08 2015 +0100
@@ -1061,10 +1061,10 @@
     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.1.0 or higher.')
+              'Python 3.3.0 or higher.')
         exit(5)
-    elif sys.version_info < (3, 1, 0) and sys.version_info[0] == 3:
-        print('Sorry, you must have Python 3.1.0 or higher.')
+    elif sys.version_info < (3, 3, 0) and sys.version_info[0] == 3:
+        print('Sorry, you must have Python 3.3.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