Skip to content

Commit

Permalink
Drop the zope.app.testing extra.
Browse files Browse the repository at this point in the history
It dropped its special ``zope.testbrowser`` support and we do not need it for
our tests or code any more.
  • Loading branch information
Michael Howitz committed Feb 27, 2019
1 parent 490d75e commit 6c9fa75
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGES.txt
Expand Up @@ -2,9 +2,15 @@
CHANGES
=======

2.1 (unreleased)
3.0 (unreleased)
================

Backwards incompatible changes
------------------------------

- Drop the ``zope.app.testing`` extra introduced in version 2.0.0 as
it dropped its special ``zope.testbrowser`` support.

- Adapt the code to newer ``lxml`` versions which no longer raise an exception
if the string to be parsed by ``lxml.etree`` is empty. We now raise a
``ValueError`` in this case.
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Expand Up @@ -24,15 +24,14 @@ def read(*rnames):

test_requires = [
'zope.testrunner',
'zope.app.testing < 4',
'zope.app.wsgi[testlayer] >= 4.0dev',
'zope.app.zcmlfiles',
'zope.app.server',
'zope.testbrowser[test]',
]

setup(name='z3c.etestbrowser',
version='2.1.dev0',
version='3.0.dev0',
author='Christian Theune',
author_email='mail@gocept.com',
description='Extensions for zope.testbrowser',
Expand Down Expand Up @@ -65,7 +64,6 @@ def read(*rnames):
tests_require=test_requires,
extras_require={
"test": test_requires,
"zope.app.testing": ["zope.app.testing < 4.0"],
},
install_requires=[
'setuptools',
Expand Down

0 comments on commit 6c9fa75

Please sign in to comment.