[Zope3-checkins] SVN: zope.testing/branches/regebro-400/s Zope.testing now depends on only setuptools\! Lovely\!

Lennart Regebro regebro at gmail.com
Sat May 1 14:55:09 EDT 2010


Log message for revision 111852:
  Zope.testing now depends on only setuptools\! Lovely\!

Changed:
  U   zope.testing/branches/regebro-400/setup.py
  D   zope.testing/branches/regebro-400/src/zope/testing/exceptions.py

-=-
Modified: zope.testing/branches/regebro-400/setup.py
===================================================================
--- zope.testing/branches/regebro-400/setup.py	2010-05-01 18:42:21 UTC (rev 111851)
+++ zope.testing/branches/regebro-400/setup.py	2010-05-01 18:55:09 UTC (rev 111852)
@@ -31,7 +31,6 @@
                              'src/zope/testing/module.txt',
                              'src/zope/testing/setupstack.txt',
                              ],
-    dependency_links = ['.'], # Only until zope.interface 3.6 and zope.exception 3.6 has been released.
     )
 else:
     extras = {}
@@ -81,9 +80,7 @@
               "zope.testing.renormalizing"],
     package_dir = {'': 'src'},
     namespace_packages=['zope',],
-    install_requires = ['setuptools',
-                        'zope.exceptions',
-                        'zope.interface'],
+    install_requires = ['setuptools',],
     include_package_data = True,
     zip_safe = False,
     test_suite = 'zope.testing.tests.test_suite',

Deleted: zope.testing/branches/regebro-400/src/zope/testing/exceptions.py
===================================================================
--- zope.testing/branches/regebro-400/src/zope/testing/exceptions.py	2010-05-01 18:42:21 UTC (rev 111851)
+++ zope.testing/branches/regebro-400/src/zope/testing/exceptions.py	2010-05-01 18:55:09 UTC (rev 111852)
@@ -1,20 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2004 Zope Foundation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Exceptions for zope.testing
-
-$Id$
-"""
-
-class DocTestFailureException(AssertionError):
-    """Use custom exception for doctest unit test failures"""



More information about the Zope3-Checkins mailing list