[Checkins] SVN: zope.processlifetime/trunk/ Python 3 support added, tox configuration added

Andrey Lebedev cvs-admin at zope.org
Thu Feb 14 09:47:37 UTC 2013


Log message for revision 129374:
  Python 3 support added, tox configuration added
  
  

Changed:
  U   zope.processlifetime/trunk/CHANGES.txt
  A   zope.processlifetime/trunk/MANIFEST.in
  U   zope.processlifetime/trunk/setup.py
  A   zope.processlifetime/trunk/tox.ini

-=-
Modified: zope.processlifetime/trunk/CHANGES.txt
===================================================================
--- zope.processlifetime/trunk/CHANGES.txt	2013-02-14 09:44:24 UTC (rev 129373)
+++ zope.processlifetime/trunk/CHANGES.txt	2013-02-14 09:47:36 UTC (rev 129374)
@@ -4,6 +4,8 @@
 2.0 (unreleased)
 ----------------
 
+- Added support for Python 3.2 and 3.3
+
 - Replaced deprecated ``zope.interface.implements`` usage with equivalent
   ``zope.interface.implementer`` decorator.
 

Added: zope.processlifetime/trunk/MANIFEST.in
===================================================================
--- zope.processlifetime/trunk/MANIFEST.in	                        (rev 0)
+++ zope.processlifetime/trunk/MANIFEST.in	2013-02-14 09:47:36 UTC (rev 129374)
@@ -0,0 +1 @@
+include *.txt

Modified: zope.processlifetime/trunk/setup.py
===================================================================
--- zope.processlifetime/trunk/setup.py	2013-02-14 09:44:24 UTC (rev 129373)
+++ zope.processlifetime/trunk/setup.py	2013-02-14 09:47:36 UTC (rev 129374)
@@ -39,6 +39,9 @@
         'Programming Language :: Python :: 2',
         'Programming Language :: Python :: 2.6',
         'Programming Language :: Python :: 2.7',
+        'Programming Language :: Python :: 3',
+        'Programming Language :: Python :: 3.2',
+        'Programming Language :: Python :: 3.3',
         'Natural Language :: English',
         'Operating System :: OS Independent',
         'Topic :: Internet :: WWW/HTTP',

Added: zope.processlifetime/trunk/tox.ini
===================================================================
--- zope.processlifetime/trunk/tox.ini	                        (rev 0)
+++ zope.processlifetime/trunk/tox.ini	2013-02-14 09:47:36 UTC (rev 129374)
@@ -0,0 +1,5 @@
+[tox]
+envlist = py26,py27,py32,py33
+
+[testenv]
+commands = python setup.py test -q



More information about the checkins mailing list