Removed obsolete check in the install script.

Thu, 16 Sep 2010 08:55:46 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 16 Sep 2010 08:55:46 +0200
changeset 620
f544fadde423
parent 619
52f88b8fe8b2
child 622
54c2a58acef4

Removed obsolete check in the install script.

install.py file | annotate | diff | comparison | revisions
--- a/install.py	Wed Sep 15 18:23:59 2010 +0200
+++ b/install.py	Thu Sep 16 08:55:46 2010 +0200
@@ -835,23 +835,6 @@
     print("\nInstallation complete.")
     print()
     
-    #check version of PyQt
-    from PyQt4.QtCore import PYQT_VERSION_STR
-    pyqtVersion = PYQT_VERSION_STR
-    # always assume, that snapshots are new enough
-    if pyqtVersion.find("snapshot-") == -1:
-        while pyqtVersion.count('.') < 2:
-            pyqtVersion += '.0'
-        (maj, min, pat) = pyqtVersion.split('.')
-        maj = int(maj)
-        min = int(min)
-        pat = int(pat)
-        if min < 5:
-            print()
-            print("You have to patch PyQt QNetworkAccessManager.")
-            print("See the patches directory for details.")
-    
-    print()
     exit()
     
     

eric ide

mercurial