[Checkins] SVN: zope.app.principalannotation/branches/3.7/ Use standard doctest instead of zope.testing

Marius Gedminas cvs-admin at zope.org
Thu Mar 7 19:12:55 UTC 2013


Log message for revision 130063:
  Use standard doctest instead of zope.testing
  

Changed:
  U   zope.app.principalannotation/branches/3.7/CHANGES.txt
  U   zope.app.principalannotation/branches/3.7/setup.py
  U   zope.app.principalannotation/branches/3.7/src/zope/app/principalannotation/tests.py

-=-
Modified: zope.app.principalannotation/branches/3.7/CHANGES.txt
===================================================================
--- zope.app.principalannotation/branches/3.7/CHANGES.txt	2013-03-07 19:10:09 UTC (rev 130062)
+++ zope.app.principalannotation/branches/3.7/CHANGES.txt	2013-03-07 19:12:54 UTC (rev 130063)
@@ -2,6 +2,13 @@
 CHANGES
 =======
 
+3.7.1 (unreleased)
+------------------
+
+- Use doctest from the standard library, drop ``zope.testing`` from test
+  dependencies.
+
+
 3.7.0 (2009-12-26)
 ------------------
 

Modified: zope.app.principalannotation/branches/3.7/setup.py
===================================================================
--- zope.app.principalannotation/branches/3.7/setup.py	2013-03-07 19:10:09 UTC (rev 130062)
+++ zope.app.principalannotation/branches/3.7/setup.py	2013-03-07 19:12:54 UTC (rev 130063)
@@ -52,7 +52,7 @@
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       namespace_packages=['zope', 'zope.app'],
-      extras_require = dict(test=['zope.testing']),
+      extras_require = dict(test=[]),
       install_requires=['setuptools',
                         'transaction',
                         'zope.app.appsetup >= 3.11.0',

Modified: zope.app.principalannotation/branches/3.7/src/zope/app/principalannotation/tests.py
===================================================================
--- zope.app.principalannotation/branches/3.7/src/zope/app/principalannotation/tests.py	2013-03-07 19:10:09 UTC (rev 130062)
+++ zope.app.principalannotation/branches/3.7/src/zope/app/principalannotation/tests.py	2013-03-07 19:12:54 UTC (rev 130063)
@@ -16,7 +16,7 @@
 $Id$
 """
 import unittest
-from zope.testing import doctest
+import doctest
 
 def test_bbb_imports():
     """



More information about the checkins mailing list