Removed obsolete check in the install script. 5_0_x

Thu, 16 Sep 2010 08:57:24 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 16 Sep 2010 08:57:24 +0200
branch
5_0_x
changeset 621
777ea169520e
parent 601
4f37cd1b9a1f
child 632
9754de0f663a

Removed obsolete check in the install script.

install.py file | annotate | diff | comparison | revisions
--- a/install.py	Sun Sep 12 19:08:49 2010 +0200
+++ b/install.py	Thu Sep 16 08:57:24 2010 +0200
@@ -846,22 +846,6 @@
     except ImportError:
         pass
     
-    #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