================
- The package's ``configure.zcml`` does not include the browser subpackage's
``configure.zcml`` anymore.
This, together with ``browser`` and ``test_browser`` ``extras_require``,
decouples the browser view registrations from the main code. As a result
projects that do not need the ZMI views to be registered are not pulling in
the zope.app.* dependencies anymore.
To enable the ZMI views for your project, you will have to do two things:
* list ``zc.catalog [browser]`` as a ``install_requires``.
* have your project's ``configure.zcml`` include the ``zc.catalog.browser``
subpackage.
- Only include the browser tests whenever the dependencies for the browser
tests are available.
- Python2.7 test fix.