Thu, 25 May 2017 14:10:51 +0200
Fixed an issue preventing the activation of the plug-in with Python 3 >= 3.5.x.
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginPyLint.py | file | annotate | diff | comparison | revisions | |
PluginPyLint.zip | file | annotate | diff | comparison | revisions |
--- a/ChangeLog Fri Mar 31 18:07:43 2017 +0200 +++ b/ChangeLog Thu May 25 14:10:51 2017 +0200 @@ -1,5 +1,9 @@ ChangeLog --------- +Version 6.1.7: +- fixed an issue preventing the activation of the plug-in with + Python 3 >= 3.5.x + Version 6.1.6: - bug fixes
--- a/PluginPyLint.py Fri Mar 31 18:07:43 2017 +0200 +++ b/PluginPyLint.py Thu May 25 14:10:51 2017 +0200 @@ -35,7 +35,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "6.1.6" +version = "6.1.7" className = "PyLintPlugin" packageName = "PyLint" shortDescription = "Show the PyLint dialogs." @@ -117,9 +117,9 @@ """ # Determine Python Version if majorVersion == 3: - minorVersions = range(5) + minorVersions = range(10) elif majorVersion == 2: - minorVersions = range(5, 9) + minorVersions = range(6, 8) else: return []