diff -r b56735d36159 -r 3baaf8303a7f install.py --- a/install.py Sun Mar 20 20:13:29 2016 +0100 +++ b/install.py Mon Mar 28 11:59:42 2016 +0200 @@ -1179,8 +1179,8 @@ import sip sipVersion = sip.SIP_VERSION_STR print("sip Version:", sipVersion.strip()) - # always assume, that snapshots are new enough - if "snapshot" not in sipVersion: + # always assume, that snapshots or dev versions are new enough + if "snapshot" not in sipVersion and "dev" not in sipVersion: while sipVersion.count('.') < 2: sipVersion += '.0' (maj, min, pat) = sipVersion.split('.') @@ -1210,8 +1210,8 @@ from PyQt5.QtCore import PYQT_VERSION_STR pyqtVersion = PYQT_VERSION_STR print("PyQt Version:", pyqtVersion.strip()) - # always assume, that snapshots are new enough - if "snapshot" not in pyqtVersion: + # always assume, that snapshots or dev versions are new enough + if "snapshot" not in pyqtVersion and "dev" not in pyqtVersion: while pyqtVersion.count('.') < 2: pyqtVersion += '.0' (maj, min, pat) = pyqtVersion.split('.') @@ -1240,8 +1240,8 @@ from PyQt5.Qsci import QSCINTILLA_VERSION_STR scintillaVersion = QSCINTILLA_VERSION_STR print("QScintilla Version:", QSCINTILLA_VERSION_STR.strip()) - # always assume, that snapshots are new enough - if "snapshot" not in scintillaVersion: + # always assume, that snapshots or dev versions are new enough + if "snapshot" not in scintillaVersion and "dev" not in scintillaVersion: while scintillaVersion.count('.') < 2: scintillaVersion += '.0' (maj, min, pat) = scintillaVersion.split('.')