Commit eb0cde20 authored by Stephan Richter's avatar Stephan Richter

- Allow testing without checkouts of unreleased zope.publisher and ZODB.

- Added Python 3 Trove classifiers.
parent 9485e969
......@@ -5,7 +5,9 @@ CHANGES
4.0.0a2 (unreleased)
--------------------
- Nothing changed yet.
- Allow testing without checkouts of unreleased zope.publisher and ZODB.
- Added Python 3 Trove classifiers.
4.0.0a1 (2013-02-20)
......
[buildout]
develop = .
../zope.publisher
../ZODB
find-links =
${buildout:directory}/zope.publisher-4.0.0dev.tar.gz
${buildout:directory}/ZODB-4.0.0dev.tar.gz
parts = test
# graph coverage-test coverage-report
......
......@@ -63,6 +63,9 @@ setup(name='zope.container',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation :: CPython',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
......
##############################################################################
# Copyright (c) 2003 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
......@@ -53,7 +53,7 @@ class Cloner(object):
self.context = context
def __call__(self, name):
# We remove the security proxy so we can actually call the
# class and return an unproxied new object. (We can't use a
# trusted adapter, because the result must be unproxied.) By
......
......@@ -3,24 +3,25 @@ envlist = py26,py27,py33
[testenv]
commands = python setup.py test -q
deps = zope.testrunner
zope.testing
six
zope.interface
zope.dottedname
zope.schema
zope.component
zope.event
zope.location
zope.security
zope.lifecycleevent
zope.i18nmessageid
zope.filerepresentation
zope.size
zope.traversing
zope.publisher
persistent
BTrees
deps =
{toxinidir}/zope.publisher-4.0.0dev.tar.gz
zope.testrunner
zope.testing
six
zope.interface
zope.dottedname
zope.schema
zope.component
zope.event
zope.location
zope.security
zope.lifecycleevent
zope.i18nmessageid
zope.filerepresentation
zope.size
zope.traversing
persistent
BTrees
[testenv:coverage]
basepython =
......@@ -33,6 +34,7 @@ commands =
pip install -e .
nosetests --with-xunit --with-xcoverage
deps =
{toxinidir}/zope.publisher-4.0.0dev.tar.gz
nose
coverage
nosexcover
......@@ -45,12 +47,11 @@ deps =
zope.component
zope.event
zope.location
zope.security
zope.security>=4.0.0a3
zope.lifecycleevent
zope.i18nmessageid
zope.filerepresentation
zope.size
zope.traversing
zope.publisher
persistent
BTrees
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment