[Checkins] SVN: transaction/trunk/ Declare support for Python 3.3 in 'setup.py'

Tres Seaver cvs-admin at zope.org
Mon Dec 3 14:24:18 UTC 2012


Log message for revision 128495:
  Declare support for Python 3.3 in 'setup.py'
  
  Add 'tox' testing for Python 3.3.
  

Changed:
  _U  transaction/trunk/
  U   transaction/trunk/CHANGES.txt
  U   transaction/trunk/setup.py
  U   transaction/trunk/tox.ini

-=-
Modified: transaction/trunk/CHANGES.txt
===================================================================
--- transaction/trunk/CHANGES.txt	2012-12-03 11:52:07 UTC (rev 128494)
+++ transaction/trunk/CHANGES.txt	2012-12-03 14:24:17 UTC (rev 128495)
@@ -4,6 +4,8 @@
 1.3.1 (unreleased)
 ------------------
 
+- Declared support for Python 3.3 in ``setup.py``, and added ``tox`` testing.
+
 - When a non-retryable exception was raised as the result of a call to
   ``transaction.manager.commit`` within the "attempts" machinery, the
   exception was not reraised properly.  Symptom: an unrecoverable exception

Modified: transaction/trunk/setup.py
===================================================================
--- transaction/trunk/setup.py	2012-12-03 11:52:07 UTC (rev 128494)
+++ transaction/trunk/setup.py	2012-12-03 14:24:17 UTC (rev 128495)
@@ -40,6 +40,7 @@
         "Programming Language :: Python :: 2.7",
         "Programming Language :: Python :: 3",
         "Programming Language :: Python :: 3.2",
+        "Programming Language :: Python :: 3.3",
         "Programming Language :: Python :: Implementation :: CPython",
         "Programming Language :: Python :: Implementation :: PyPy",
         ],

Modified: transaction/trunk/tox.ini
===================================================================
--- transaction/trunk/tox.ini	2012-12-03 11:52:07 UTC (rev 128494)
+++ transaction/trunk/tox.ini	2012-12-03 14:24:17 UTC (rev 128495)
@@ -3,7 +3,7 @@
 # Jython support pending 2.7 support, due 2012-07-15 or so.  See:
 # http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
 #    py26,py27,py32,pypy,jython,coverage
-    py26,py27,py32,pypy,coverage,docs
+    py26,py27,py32,py33,pypy,coverage,docs
 
 [testenv]
 commands = 



More information about the checkins mailing list