Fixed an issue preventing the activation of the plug-in with Python 3 >= 3.5.x. release-6.1.7

Thu, 25 May 2017 14:10:51 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 25 May 2017 14:10:51 +0200
changeset 64
7c2867ac2ee8
parent 63
919dd526655a
child 65
af349b5bb030

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 []
     
Binary file PluginPyLint.zip has changed

eric ide

mercurial