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

Thu, 25 May 2017 14:07:44 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 25 May 2017 14:07:44 +0200
changeset 104
192bc09e64de
parent 103
fd669521742b
child 105
093c471f86a6

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

ChangeLog file | annotate | diff | comparison | revisions
PluginCxFreeze.py file | annotate | diff | comparison | revisions
PluginCxFreeze.zip file | annotate | diff | comparison | revisions
--- a/ChangeLog	Tue Mar 28 19:20:35 2017 +0200
+++ b/ChangeLog	Thu May 25 14:07:44 2017 +0200
@@ -1,5 +1,9 @@
 ChangeLog
 ---------
+Version 6.0.8:
+- fixed an issue preventing the activation of the plug-in with
+  Python 3 >= 3.5.x
+
 Version 6.0.7:
 - bug fixes
 
--- a/PluginCxFreeze.py	Tue Mar 28 19:20:35 2017 +0200
+++ b/PluginCxFreeze.py	Thu May 25 14:07:44 2017 +0200
@@ -26,7 +26,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.0.7"
+version = "6.0.8"
 className = "CxFreezePlugin"
 packageName = "CxFreeze"
 shortDescription = "Show the CxFreeze dialogs."
@@ -83,9 +83,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 PluginCxFreeze.zip has changed

eric ide

mercurial