24 # Start-of-Header |
24 # Start-of-Header |
25 name = "CxFreeze Plugin" |
25 name = "CxFreeze Plugin" |
26 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
26 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
27 autoactivate = True |
27 autoactivate = True |
28 deactivateable = True |
28 deactivateable = True |
29 version = "6.0.7" |
29 version = "6.0.8" |
30 className = "CxFreezePlugin" |
30 className = "CxFreezePlugin" |
31 packageName = "CxFreeze" |
31 packageName = "CxFreeze" |
32 shortDescription = "Show the CxFreeze dialogs." |
32 shortDescription = "Show the CxFreeze dialogs." |
33 longDescription = \ |
33 longDescription = \ |
34 """This plugin implements the CxFreeze dialogs.""" \ |
34 """This plugin implements the CxFreeze dialogs.""" \ |
81 @param majorVersion major python version of the executables (int) |
81 @param majorVersion major python version of the executables (int) |
82 @return names of the executable (list) |
82 @return names of the executable (list) |
83 """ |
83 """ |
84 # Determine Python Version |
84 # Determine Python Version |
85 if majorVersion == 3: |
85 if majorVersion == 3: |
86 minorVersions = range(5) |
86 minorVersions = range(10) |
87 elif majorVersion == 2: |
87 elif majorVersion == 2: |
88 minorVersions = range(5, 9) |
88 minorVersions = range(6, 8) |
89 else: |
89 else: |
90 return [] |
90 return [] |
91 |
91 |
92 executables = set() |
92 executables = set() |
93 if Utilities.isWindowsPlatform(): |
93 if Utilities.isWindowsPlatform(): |