[Checkins] SVN: zope.configuration/branches/tseaver-test_cleanup/ Added explicit support for Python 3.2 and PyPy.

Tres Seaver cvs-admin at zope.org
Tue May 8 01:19:11 UTC 2012


Log message for revision 125721:
  Added explicit support for Python 3.2 and  PyPy.
  

Changed:
  U   zope.configuration/branches/tseaver-test_cleanup/CHANGES.txt
  U   zope.configuration/branches/tseaver-test_cleanup/setup.py
  U   zope.configuration/branches/tseaver-test_cleanup/tox.ini

-=-
Modified: zope.configuration/branches/tseaver-test_cleanup/CHANGES.txt
===================================================================
--- zope.configuration/branches/tseaver-test_cleanup/CHANGES.txt	2012-05-08 01:19:03 UTC (rev 125720)
+++ zope.configuration/branches/tseaver-test_cleanup/CHANGES.txt	2012-05-08 01:19:07 UTC (rev 125721)
@@ -5,6 +5,10 @@
 4.0.0 (unreleased)
 ------------------
 
+- Added explicit support for PyPy.
+
+- Added explicit support for Python 3.2.
+
 - Dropped explicit support for Python 2.4 / 2.5.
 
 - Added support for continuous integration using ``tox`` and ``jenkins``.

Modified: zope.configuration/branches/tseaver-test_cleanup/setup.py
===================================================================
--- zope.configuration/branches/tseaver-test_cleanup/setup.py	2012-05-08 01:19:03 UTC (rev 125720)
+++ zope.configuration/branches/tseaver-test_cleanup/setup.py	2012-05-08 01:19:07 UTC (rev 125721)
@@ -77,7 +77,10 @@
           'Programming Language :: Python',
           'Programming Language :: Python :: 2.6',
           'Programming Language :: Python :: 2.7',
+          'Programming Language :: Python3',
+          'Programming Language :: Python :: 3.2',
           'Programming Language :: Python :: Implementation :: CPython',
+          'Programming Language :: Python :: Implementation :: PyPy',
           'Natural Language :: English',
           'Operating System :: OS Independent',
           'Topic :: Internet :: WWW/HTTP',

Modified: zope.configuration/branches/tseaver-test_cleanup/tox.ini
===================================================================
--- zope.configuration/branches/tseaver-test_cleanup/tox.ini	2012-05-08 01:19:03 UTC (rev 125720)
+++ zope.configuration/branches/tseaver-test_cleanup/tox.ini	2012-05-08 01:19:07 UTC (rev 125721)
@@ -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,jython,pypy,coverage
-    py26,py27,coverage
+    py26,py27,py32,pypy,coverage
 
 [testenv]
 deps =



More information about the checkins mailing list