SVN: zdaemon/branches/py3/setup.py zc.customdoctests now supports Python 3.
Marius Gedminas <[email protected]> Thu, 14 Feb 2013 10:33:33 -0500 (EST)
| Newsgroups | gmane.comp.python.zope.zodb.cvs |
|---|---|
| Message-ID | <20130214153333.91FE2940E7__47166.2835022018$1360856039$gmane$org@cvs.zope.org> |
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 = """