[Checkins] SVN: zdaemon/branches/py3/setup.py zc.customdoctests now supports Python 3.

Marius Gedminas cvs-admin at zope.org
Thu Feb 14 15:33:33 UTC 2013


Log message for revision 129411:
  zc.customdoctests now supports Python 3.

Changed:
  U   zdaemon/branches/py3/setup.py

-=-
Modified: zdaemon/branches/py3/setup.py
===================================================================
--- zdaemon/branches/py3/setup.py	2013-02-14 14:21:03 UTC (rev 129410)
+++ zdaemon/branches/py3/setup.py	2013-02-14 15:33:33 UTC (rev 129411)
@@ -12,11 +12,9 @@
 #
 ##############################################################################
 import os
-import sys
 
-tests_require=['zope.testing', 'zope.testrunner', 'manuel', 'mock']
-if sys.version_info[0] == 2:
-    tests_require.append('zc.customdoctests')
+tests_require = ['zope.testing', 'zope.testrunner', 'manuel', 'mock',
+                 'zc.customdoctests']
 
 
 entry_points = """



More information about the checkins mailing list