PluginPyLint.py

changeset 64
7c2867ac2ee8
parent 62
3d7ca91127c5
child 66
0ed7d5364b48
child 68
35b46e640d6d
--- 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 []
     

eric ide

mercurial