[Checkins] SVN: zope.interface/trunk/ Note new second-dot version due to change in supported Python platforms:

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


Log message for revision 124820:
  Note new second-dot version due to change in supported Python platforms:
  
  - Drop support for Python 2.4, 2.5, 3.1.
  
  - Note that Jython support is pending the arrival of 2.7 compatibiltiy.
  
  Also, add a 'covarage' environment to the Tox support.

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

-=-
Modified: zope.interface/trunk/CHANGES.txt
===================================================================
--- zope.interface/trunk/CHANGES.txt	2012-03-30 18:49:26 UTC (rev 124819)
+++ zope.interface/trunk/CHANGES.txt	2012-03-30 18:57:37 UTC (rev 124820)
@@ -1,7 +1,7 @@
 ``zope.interface Changelog``
 ============================
 
-3.8.1 (unreleased)
+3.9.0 (unreleased)
 ------------------
 
 - Replaced all unittest coverage previously accomplished via doctests with

Modified: zope.interface/trunk/setup.py
===================================================================
--- zope.interface/trunk/setup.py	2012-03-30 18:49:26 UTC (rev 124819)
+++ zope.interface/trunk/setup.py	2012-03-30 18:57:37 UTC (rev 124820)
@@ -97,7 +97,7 @@
     from build_ext_2 import optional_build_ext
     
 setup(name='zope.interface',
-      version='3.8.1dev',
+      version='3.9.0dev',
       url='http://pypi.python.org/pypi/zope.interface',
       license='ZPL 2.1',
       description='Interfaces for Python',
@@ -109,11 +109,9 @@
         "Intended Audience :: Developers",
         "License :: OSI Approved :: Zope Public License",
         "Operating System :: OS Independent",
-        "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",
         "Topic :: Software Development :: Libraries :: Python Modules",
       ],

Modified: zope.interface/trunk/tox.ini
===================================================================
--- zope.interface/trunk/tox.ini	2012-03-30 18:49:26 UTC (rev 124819)
+++ zope.interface/trunk/tox.ini	2012-03-30 18:57:37 UTC (rev 124820)
@@ -1,6 +1,9 @@
 [tox]
 envlist = 
-    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,jython,pypy,coverage
+    py26,py27,py32,pypy,coverage
 
 [testenv]
 commands = 
@@ -15,3 +18,12 @@
 deps = zope.event
        zope.fixers
 
+[testenv:coverage]
+basepython =
+    python2.6
+commands = 
+    nosetests --with-xunit --with-xcoverage
+deps =
+    nose
+    coverage
+    nosexcover



More information about the checkins mailing list