[Checkins] SVN: zope.event/trunk/ Version bump (second dot due to change in supported platforms):

Tres Seaver cvs-admin at zope.org
Fri Mar 30 18:24:38 UTC 2012


Log message for revision 124815:
  Version bump (second dot due to change in supported platforms):
  
  - Drop explicit support for Python 2.4 / 2.5 / 3.1.
  
  - Add support for PyPy.
  
  Also, add a 'coverage' test element under Tox.
  
  Note the expected release of a 2.7.x-compatible Jython as the trigger for
  supporting Jython.
  

Changed:
  U   zope.event/trunk/CHANGES.txt
  U   zope.event/trunk/setup.py
  U   zope.event/trunk/tox.ini

-=-
Modified: zope.event/trunk/CHANGES.txt
===================================================================
--- zope.event/trunk/CHANGES.txt	2012-03-30 18:22:10 UTC (rev 124814)
+++ zope.event/trunk/CHANGES.txt	2012-03-30 18:24:35 UTC (rev 124815)
@@ -1,6 +1,14 @@
 ``zope.event`` Changelog
 ========================
 
+3.6.0 (unreleased)
+------------------
+
+- Drop explicit support for Python 2.4 / 2.5 / 3.1.
+
+- Add support for PyPy.
+
+
 3.5.2 (2012-03-30)
 ------------------
 

Modified: zope.event/trunk/setup.py
===================================================================
--- zope.event/trunk/setup.py	2012-03-30 18:22:10 UTC (rev 124814)
+++ zope.event/trunk/setup.py	2012-03-30 18:24:35 UTC (rev 124815)
@@ -27,7 +27,7 @@
 
 setup(
     name='zope.event',
-    version='3.5.2',
+    version='3.6dev',
     url='http://pypi.python.org/pypi/zope.event',
     license='ZPL 2.1',
     description='Very basic event publishing system',
@@ -43,13 +43,12 @@
         "Intended Audience :: Developers",
         "License :: OSI Approved :: Zope Public License",
         "Operating System :: OS Independent",
-        "Programming Language :: Python :: 2.4",
-        "Programming Language :: Python :: 2.5",
         "Programming Language :: Python :: 2.6",
         "Programming Language :: Python :: 2.7",
         "Programming Language :: Python :: 3",
-        "Programming Language :: Python :: 3.1",
         "Programming Language :: Python :: 3.2",
+        "Programming Language :: Python :: Implementation :: CPython",
+        "Programming Language :: Python :: Implementation :: PyPy",
         "Topic :: Software Development :: Libraries :: Python Modules",
         ],
 

Modified: zope.event/trunk/tox.ini
===================================================================
--- zope.event/trunk/tox.ini	2012-03-30 18:22:10 UTC (rev 124814)
+++ zope.event/trunk/tox.ini	2012-03-30 18:24:35 UTC (rev 124815)
@@ -1,6 +1,9 @@
 [tox]
 envlist = 
-    py24,py25,py26,py27,py32,jython,pypy
+# 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
 
 [testenv]
 commands = 
@@ -10,3 +13,13 @@
 [testenv:jython]
 commands = 
    jython setup.py test -q
+
+[testenv:coverage]
+basepython =
+    python2.6
+commands = 
+    nosetests --with-xunit --with-xcoverage
+deps =
+    nose
+    coverage
+    nosexcover



More information about the checkins mailing list