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

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

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 05 Dec 2015 17:04:08 +0100
branch
6_1_x
changeset 4609
11589fdd69f4
parent 4607
e108a6528ef4
child 4611
8893614fc54a

Changed the dependancy checker of the install script to require at least Python 2.7 or 3.3.
(grafted from 0d850eb60ea8e05628910708e6eb9867f9d7e3ec)

install.py file | annotate | diff | comparison | revisions
--- a/install.py	Sat Dec 05 16:06:27 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