Added the Python2 compatibility flag. release-1.6.0

Sat, 26 Apr 2014 17:11:59 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 26 Apr 2014 17:11:59 +0200
changeset 71
8a78fab32c18
parent 70
8a89f6a21075
child 72
3b3e73b730f0

Added the Python2 compatibility flag.

ChangeLog file | annotate | diff | comparison | revisions
PluginProjectPyramid.py file | annotate | diff | comparison | revisions
PluginProjectPyramid.zip file | annotate | diff | comparison | revisions
ProjectPyramid/ConfigurationPage/PyramidPage.py file | annotate | diff | comparison | revisions
ProjectPyramid/CreateParametersDialog.py file | annotate | diff | comparison | revisions
ProjectPyramid/DistributionTypeSelectionDialog.py file | annotate | diff | comparison | revisions
ProjectPyramid/Documentation/source/Plugin_Project_Pyramid.PluginProjectPyramid.html file | annotate | diff | comparison | revisions
ProjectPyramid/FormSelectionDialog.py file | annotate | diff | comparison | revisions
ProjectPyramid/Project.py file | annotate | diff | comparison | revisions
ProjectPyramid/PyramidDialog.py file | annotate | diff | comparison | revisions
ProjectPyramid/PyramidRoutesDialog.py file | annotate | diff | comparison | revisions
--- a/ChangeLog	Sat Apr 12 19:46:03 2014 +0200
+++ b/ChangeLog	Sat Apr 26 17:11:59 2014 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 1.6.0:
+- added the Python2 compatibility flag
+
 Version 1.5.2
 - bug fixes
 
--- a/PluginProjectPyramid.py	Sat Apr 12 19:46:03 2014 +0200
+++ b/PluginProjectPyramid.py	Sat Apr 26 17:11:59 2014 +0200
@@ -7,7 +7,7 @@
 Module implementing the Pyramid project plugin.
 """
 
-from __future__ import unicode_literals    # __IGNORE_WARNING__
+from __future__ import unicode_literals
 
 import os
 import glob
@@ -28,7 +28,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "1.5.2"
+version = "1.6.0"
 className = "ProjectPyramidPlugin"
 packageName = "ProjectPyramid"
 shortDescription = "Project support for Pyramid projects."
@@ -36,6 +36,7 @@
     """This plugin implements project support for Pyramid projects."""
 needsRestart = False
 pyqtApi = 2
+python2Compatible = True
 # End-of-Header
 
 error = ""
Binary file PluginProjectPyramid.zip has changed
--- a/ProjectPyramid/ConfigurationPage/PyramidPage.py	Sat Apr 12 19:46:03 2014 +0200
+++ b/ProjectPyramid/ConfigurationPage/PyramidPage.py	Sat Apr 26 17:11:59 2014 +0200
@@ -7,7 +7,7 @@
 Module implementing the Pyramid configuration page.
 """
 
-from __future__ import unicode_literals    # __IGNORE_WARNING__
+from __future__ import unicode_literals
 
 from PyQt4.QtCore import pyqtSlot
 
--- a/ProjectPyramid/CreateParametersDialog.py	Sat Apr 12 19:46:03 2014 +0200
+++ b/ProjectPyramid/CreateParametersDialog.py	Sat Apr 26 17:11:59 2014 +0200
@@ -7,10 +7,10 @@
 Module implementing a dialog for entering the create parameters.
 """
 
-from __future__ import unicode_literals    # __IGNORE_WARNING__
+from __future__ import unicode_literals
 try:
     str = unicode
-except (NameError):
+except NameError:
     pass
 
 from PyQt4.QtCore import pyqtSlot, QProcess
--- a/ProjectPyramid/DistributionTypeSelectionDialog.py	Sat Apr 12 19:46:03 2014 +0200
+++ b/ProjectPyramid/DistributionTypeSelectionDialog.py	Sat Apr 26 17:11:59 2014 +0200
@@ -7,10 +7,10 @@
 Module implementing a dialog to select the distribution file formats.
 """
 
-from __future__ import unicode_literals    # __IGNORE_WARNING__
+from __future__ import unicode_literals
 try:
     str = unicode
-except (NameError):
+except NameError:
     pass
 
 from PyQt4.QtCore import Qt, QProcess
--- a/ProjectPyramid/Documentation/source/Plugin_Project_Pyramid.PluginProjectPyramid.html	Sat Apr 12 19:46:03 2014 +0200
+++ b/ProjectPyramid/Documentation/source/Plugin_Project_Pyramid.PluginProjectPyramid.html	Sat Apr 26 17:11:59 2014 +0200
@@ -25,7 +25,7 @@
 </p>
 <h3>Global Attributes</h3>
 <table>
-<tr><td>author</td></tr><tr><td>autoactivate</td></tr><tr><td>className</td></tr><tr><td>deactivateable</td></tr><tr><td>error</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>needsRestart</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>pyramidPluginObject</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr>
+<tr><td>author</td></tr><tr><td>autoactivate</td></tr><tr><td>className</td></tr><tr><td>deactivateable</td></tr><tr><td>error</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>needsRestart</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>pyramidPluginObject</td></tr><tr><td>python2Compatible</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr>
 </table>
 <h3>Classes</h3>
 <table>
--- a/ProjectPyramid/FormSelectionDialog.py	Sat Apr 12 19:46:03 2014 +0200
+++ b/ProjectPyramid/FormSelectionDialog.py	Sat Apr 26 17:11:59 2014 +0200
@@ -7,7 +7,7 @@
 Module implementing a dialog to select the template type.
 """
 
-from __future__ import unicode_literals    # __IGNORE_WARNING__
+from __future__ import unicode_literals
 
 from PyQt4.QtCore import pyqtSlot
 from PyQt4.QtGui import QDialog, QDialogButtonBox
--- a/ProjectPyramid/Project.py	Sat Apr 12 19:46:03 2014 +0200
+++ b/ProjectPyramid/Project.py	Sat Apr 26 17:11:59 2014 +0200
@@ -7,7 +7,7 @@
 Module implementing the Pyramid project support.
 """
 
-from __future__ import unicode_literals    # __IGNORE_WARNING__
+from __future__ import unicode_literals
 
 try:
     import configparser
--- a/ProjectPyramid/PyramidDialog.py	Sat Apr 12 19:46:03 2014 +0200
+++ b/ProjectPyramid/PyramidDialog.py	Sat Apr 26 17:11:59 2014 +0200
@@ -7,10 +7,10 @@
 Module implementing a dialog starting a process and showing its output.
 """
 
-from __future__ import unicode_literals    # __IGNORE_WARNING__
+from __future__ import unicode_literals
 try:
     str = unicode
-except (NameError):
+except NameError:
     pass
 
 import os
--- a/ProjectPyramid/PyramidRoutesDialog.py	Sat Apr 12 19:46:03 2014 +0200
+++ b/ProjectPyramid/PyramidRoutesDialog.py	Sat Apr 26 17:11:59 2014 +0200
@@ -7,10 +7,10 @@
 Module implementing a dialog showing the available routes.
 """
 
-from __future__ import unicode_literals    # __IGNORE_WARNING__
+from __future__ import unicode_literals
 try:
     str = unicode
-except (NameError):
+except NameError:
     pass
 
 import os

eric ide

mercurial