[Checkins] SVN: zope.proxy/trunk/ Removed test extra and the remaining dependency on zope.testing.

Hanno Schlichting hannosch at hannosch.eu
Fri Apr 30 17:26:58 EDT 2010


Log message for revision 111745:
  Removed test extra and the remaining dependency on zope.testing.
  

Changed:
  U   zope.proxy/trunk/CHANGES.txt
  U   zope.proxy/trunk/setup.py
  D   zope.proxy/trunk/src/zope/proxy/DEPENDENCIES.cfg
  D   zope.proxy/trunk/src/zope/proxy/SETUP.cfg
  D   zope.proxy/trunk/test.py

-=-
Modified: zope.proxy/trunk/CHANGES.txt
===================================================================
--- zope.proxy/trunk/CHANGES.txt	2010-04-30 21:26:16 UTC (rev 111744)
+++ zope.proxy/trunk/CHANGES.txt	2010-04-30 21:26:58 UTC (rev 111745)
@@ -2,9 +2,11 @@
 CHANGES
 =======
 
-3.5.1 (unreleased)
+3.6.0 (unreleased)
 ------------------
 
+- Removed test extra and the remaining dependency on zope.testing.
+
 - Removed use of 'zope.testing.doctestunit' in favor of stdlib's 'doctest.
 
 3.5.0 (2009/01/31)

Modified: zope.proxy/trunk/setup.py
===================================================================
--- zope.proxy/trunk/setup.py	2010-04-30 21:26:16 UTC (rev 111744)
+++ zope.proxy/trunk/setup.py	2010-04-30 21:26:58 UTC (rev 111745)
@@ -27,16 +27,13 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.proxy',
-      version = '3.5.1dev',
+      version = '3.6.0dev',
       author='Zope Corporation and Contributors',
       author_email='zope-dev at zope.org',
       description='Generic Transparent Proxies',
       long_description=(
           read('README.txt')
           + '\n\n' +
-# Waaa   'Detailed Documentation\n'
-#        '----------------------\n'
-#       + '\n\n' +
           read('CHANGES.txt')
           ),
       url='http://pypi.python.org/pypi/zope.proxy',
@@ -60,10 +57,6 @@
                               ]),
                    ],
 
-      extras_require=dict(
-          test=['zope.testing']),
-      tests_require = [
-          'zope.testing'],
       test_suite = 'zope.proxy',
       install_requires=[
           'zope.interface',

Deleted: zope.proxy/trunk/src/zope/proxy/DEPENDENCIES.cfg
===================================================================
--- zope.proxy/trunk/src/zope/proxy/DEPENDENCIES.cfg	2010-04-30 21:26:16 UTC (rev 111744)
+++ zope.proxy/trunk/src/zope/proxy/DEPENDENCIES.cfg	2010-04-30 21:26:58 UTC (rev 111745)
@@ -1,2 +0,0 @@
-zope.interface
-zope.testing

Deleted: zope.proxy/trunk/src/zope/proxy/SETUP.cfg
===================================================================
--- zope.proxy/trunk/src/zope/proxy/SETUP.cfg	2010-04-30 21:26:16 UTC (rev 111744)
+++ zope.proxy/trunk/src/zope/proxy/SETUP.cfg	2010-04-30 21:26:58 UTC (rev 111745)
@@ -1,8 +0,0 @@
-# Packaging information for zpkg.
-
-header proxy.h
-
-<extension _zope_proxy_proxy>
-  source      _zope_proxy_proxy.c
-  depends-on  proxy.h
-</extension>

Deleted: zope.proxy/trunk/test.py
===================================================================
--- zope.proxy/trunk/test.py	2010-04-30 21:26:16 UTC (rev 111744)
+++ zope.proxy/trunk/test.py	2010-04-30 21:26:58 UTC (rev 111745)
@@ -1,36 +0,0 @@
-#!/usr/bin/env python
-##############################################################################
-#
-# Copyright (c) 2004 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.0 (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.
-#
-##############################################################################
-"""Sample test script using zope.testing.testrunner
-
-see zope.testing testrunner.txt
-
-$Id$
-"""
-
-import os, sys
-
-src = os.path.join(os.path.split(sys.argv[0])[0], 'src')
-sys.path.insert(0, src) # put at beginning to avoid one in site_packages
-
-from zope.testing import testrunner
-
-defaults = [
-    '--path', src,
-    '--package', 'zope.proxy',
-    '--tests-pattern', '^tests$',
-    ]
-
-sys.exit(testrunner.run(defaults))
-



More information about the checkins mailing list