Hello community,

here is the log from the commit of package python-zope.component for 
openSUSE:Factory checked in at 2020-01-23 16:11:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-zope.component (Old)
 and      /work/SRC/openSUSE:Factory/.python-zope.component.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-zope.component"

Thu Jan 23 16:11:06 2020 rev:7 rq:766059 version:4.6

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-zope.component/python-zope.component.changes  
    2019-04-23 14:35:01.885429429 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-zope.component.new.26092/python-zope.component.changes
   2020-01-23 16:12:46.275701874 +0100
@@ -1,0 +2,8 @@
+Tue Jan 21 11:24:19 UTC 2020 - Marketa Calabkova <[email protected]>
+
+- update to version 4.6
+  * Add support for Python 3.8.
+  * Drop support for Python 3.4.
+  * Fix tests on Python 2 following changes in ZODB 5.5.0.
+
+-------------------------------------------------------------------

Old:
----
  zope.component-4.5.tar.gz

New:
----
  zope.component-4.6.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-zope.component.spec ++++++
--- /var/tmp/diff_new_pack.0gjbs4/_old  2020-01-23 16:12:47.215702431 +0100
+++ /var/tmp/diff_new_pack.0gjbs4/_new  2020-01-23 16:12:47.219702433 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-zope.component
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2013 LISA GmbH, Bingen, Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -27,12 +27,13 @@
 %bcond_with test
 %endif
 Name:           python-zope.component%{psuffix}
-Version:        4.5
+Version:        4.6
 Release:        0
+
 Summary:        Zope Component Architecture
 License:        ZPL-2.1
 Group:          Development/Languages/Python
-Url:            http://www.python.org/pypi/zope.component
+URL:            http://www.python.org/pypi/zope.component
 Source:         
https://files.pythonhosted.org/packages/source/z/zope.component/zope.component-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes

++++++ zope.component-4.5.tar.gz -> zope.component-4.6.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.component-4.5/.gitignore 
new/zope.component-4.6/.gitignore
--- old/zope.component-4.5/.gitignore   2018-10-10 13:24:16.000000000 +0200
+++ new/zope.component-4.6/.gitignore   1970-01-01 01:00:00.000000000 +0100
@@ -1,17 +0,0 @@
-*.pyc
-__pycache__
-bin
-develop-eggs
-eggs
-parts
-.installed.cfg
-*.egg-info
-docs/_build
-build
-.tox
-nosetests.xml
-coverage.xml
-.coverage
-dist/
-.eggs/
-htmlcov/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.component-4.5/.travis.yml 
new/zope.component-4.6/.travis.yml
--- old/zope.component-4.5/.travis.yml  2018-10-10 13:24:16.000000000 +0200
+++ new/zope.component-4.6/.travis.yml  2019-11-12 11:34:01.000000000 +0100
@@ -1,41 +1,37 @@
 language: python
-sudo: false
-matrix:
-  include:
-    - python: 2.7
-      env: MINIMAL=1
+
 python:
   - 2.7
-  - 3.4
   - 3.5
   - 3.6
+  - 3.7
+  - 3.8
   - pypy
   - pypy3
 
-matrix:
+jobs:
   include:
-    - python: "3.7"
-      dist: xenial
-      sudo: true
+    - name: "Python: 2.7, minimal set of dependencies"
+      python: 2.7
+      env: MINIMAL=1
+
+install:
+  - pip install -U pip setuptools
+  - pip install -U coveralls coverage
+  - if [[ -n "$MINIMAL" ]]; then pip install -U -e ".[mintests]"; fi
+  - if [[ -z "$MINIMAL" ]]; then pip install -U -e ".[test,docs]"; fi
 
 script:
   - coverage run -m zope.testrunner --test-path=src
-  - if [[ -z "$MINIMAL" ]]; then sphinx-build                      -b html    
-d docs/_build/doctrees docs docs/_build/html; fi
-  - if [[ -z "$MINIMAL" ]]; then coverage run -a `which sphinx-build` -b 
doctest -d docs/_build/doctrees docs docs/_build/doctest; fi
+  - if [[ -z "$MINIMAL" ]]; then sphinx-build              -b html    -d 
docs/_build/doctrees docs docs/_build/html; fi
+  - if [[ -z "$MINIMAL" ]]; then coverage run -a -m sphinx -b doctest -d 
docs/_build/doctrees docs docs/_build/doctest; fi
 
 after_success:
   - coveralls
+
 notifications:
   email: false
 
-install:
-  - pip install -U pip setuptools
-  - pip install -U coveralls coverage
-  - if [[ -n "$MINIMAL" ]]; then pip install -U -e ".[mintests]"; fi
-  - if [[ -z "$MINIMAL" ]]; then pip install -U -e ".[test,docs]"; fi
-
-
 cache: pip
-
 before_cache:
   - rm -f $HOME/.cache/pip/log/debug.log
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.component-4.5/CHANGES.rst 
new/zope.component-4.6/CHANGES.rst
--- old/zope.component-4.5/CHANGES.rst  2018-10-10 13:24:16.000000000 +0200
+++ new/zope.component-4.6/CHANGES.rst  2019-11-12 11:34:01.000000000 +0100
@@ -1,6 +1,16 @@
 Changes
 =======
 
+4.6 (2019-11-12)
+----------------
+
+- Add support for Python 3.8.
+
+- Drop support for Python 3.4.
+
+- Fix tests on Python 2 following changes in ZODB 5.5.0.
+
+
 4.5 (2018-10-10)
 ----------------
 
@@ -13,6 +23,7 @@
 - Make accessing names that have been moved to ``zope.interface``
   produce a ``DeprecationWarning``.
 
+
 4.4.1 (2017-09-26)
 ------------------
 
@@ -36,6 +47,7 @@
 - Internal test code in ``zope.component.testfiles`` has been adjusted
   and in some cases removed.
 
+
 4.3.0 (2016-08-26)
 ------------------
 
@@ -46,16 +58,19 @@
 
 - Add support for Python 3.5.
 
+
 4.2.2 (2015-06-04)
 ------------------
 
 - Fix test cases for PyPy and PyPy3.
 
+
 4.2.1 (2014-03-19)
 ------------------
 
 - Add support for Python 3.4.
 
+
 4.2.0 (2014-02-05)
 ------------------
 
@@ -67,6 +82,7 @@
 - Implement ability to specify adapter and utility names in Python. Use
   the ``@zope.component.named(name)`` decorator to specify the name.
 
+
 4.1.0 (2013-02-28)
 ------------------
 
@@ -78,16 +94,19 @@
 
 - Fix new failing tests.
 
+
 4.0.2 (2012-12-31)
 ------------------
 
 - Flesh out PyPI Trove classifiers.
 
+
 4.0.1 (2012-11-21)
 ------------------
 
 - Add support for Python 3.3.
 
+
 4.0.0 (2012-07-02)
 ------------------
 
@@ -115,17 +134,20 @@
 - Add ``setup.py dev`` alias (runs ``setup.py develop`` plus installs
   ``nose`` and ``coverage``).
 
+
 3.12.1 (2012-04-02)
 -------------------
 
 - Wrap ``with site(foo)`` in try/finally (LP768151).
 
+
 3.12.0 (2011-11-16)
 -------------------
 
 - Add convenience function zope.component.hooks.site (a contextmanager),
   so one can write ``with site(foo): ...``.
 
+
 3.11.0 (2011-09-22)
 -------------------
 
@@ -150,6 +172,7 @@
 
 - Depend on ``zope.interface`` >= 3.8.0.
 
+
 3.10.0 (2010-09-25)
 -------------------
 
@@ -162,16 +185,19 @@
 
 - Add a basic test for the ``configure.zcml`` file provided.
 
+
 3.9.5 (2010-07-09)
 ------------------
 
 - Fix test requirements specification.
 
+
 3.9.4 (2010-04-30)
 ------------------
 
 - Prefer the standard library ``doctest`` to the one from ``zope.testing``.
 
+
 3.9.3 (2010-03-08)
 ------------------
 
@@ -181,6 +207,7 @@
   method before the load of a ZCML file to register the components in a
   custom registry.
 
+
 3.9.2 (2010-01-22)
 ------------------
 
@@ -188,12 +215,14 @@
   ``CheckerPublic`` to ``securityAdapterFactory`` wrongly wrapped the factory
   into a ``LocatingUntrustedAdapterFactory``.
 
+
 3.9.1 (2010-01-21)
 ------------------
 
 - Modify the tests to avoid allowing the tested testrunner to be influenced
   by options of the outer testrunner, such a the ``-v`` option.
 
+
 3.9.0 (2010-01-21)
 ------------------
 
@@ -201,6 +230,7 @@
   tests more easily. See ``src/zope/component/testlayer.py`` and
   ``src/zope/component/testlayer.txt``.
 
+
 3.8.0 (2009-11-16)
 ------------------
 
@@ -216,6 +246,7 @@
 - Move the ``zope.site.hooks`` functionality to ``zope.component.hooks`` as it
   isn't actually dealing with ``zope.site``'s concept of a site.
 
+
 3.7.1 (2009-07-24)
 ------------------
 
@@ -237,6 +268,7 @@
     negative consequence of this is that the utility is held in memory
     or in the database even though it isn't used.
 
+
 3.7.0 (2009-05-21)
 ------------------
 
@@ -245,6 +277,7 @@
 - Add ``zope:view`` and ``zope:resource`` implementations into
   ``zope.component.zcml`` (dependency loaded with ``zope.component [zcml]``).
 
+
 3.6.0 (2009-03-12)
 ------------------
 
@@ -281,6 +314,7 @@
 - Change package's mailing list address to zope-dev at zope.org, because
   zope3-dev at zope.org is now retired.
 
+
 3.5.1 (2008-07-25)
 ------------------
 
@@ -288,6 +322,7 @@
   interfaces declared in Python and always wanted an explicit
   ``provides="..."`` attribute. https://bugs.launchpad.net/zope3/+bug/251865
 
+
 3.5.0 (2008-07-25)
 ------------------
 
@@ -299,11 +334,13 @@
   efficient retrieval of already registered utilities. This avoids looping over
   all utilities when registering a new one.
 
+
 3.4.0 (2007-09-29)
 ------------------
 
 No further changes since 3.4.0a1.
 
+
 3.4.0a1 (2007-04-22)
 --------------------
 
@@ -313,16 +350,19 @@
   more.  See http://wiki.zope.org/zope3/LocalComponentManagementSimplification
   for the proposal describing the changes.
 
+
 3.2.0.2 (2006-04-15)
 --------------------
 
 - Fix packaging bug:  ``package_dir`` must be a *relative* path.
 
+
 3.2.0.1 (2006-04-14)
 --------------------
 
 - Packaging change: suppress inclusion of ``setup.cfg`` in ``sdist`` builds.
 
+
 3.2.0 (2006-01-05)
 ------------------
 
@@ -342,6 +382,7 @@
   via a thread global, set during URL traversal.  The ``context`` argument
   is now always optional, and should no longer be passed.
 
+
 3.0.0 (2004-11-07)
 ------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.component-4.5/PKG-INFO 
new/zope.component-4.6/PKG-INFO
--- old/zope.component-4.5/PKG-INFO     2018-10-10 13:24:17.000000000 +0200
+++ new/zope.component-4.6/PKG-INFO     2019-11-12 11:34:01.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: zope.component
-Version: 4.5
+Version: 4.6
 Summary: Zope Component Architecture
 Home-page: https://github.com/zopefoundation/zope.component
 Author: Zope Foundation and Contributors
@@ -44,6 +44,16 @@
         Changes
         =======
         
+        4.6 (2019-11-12)
+        ----------------
+        
+        - Add support for Python 3.8.
+        
+        - Drop support for Python 3.4.
+        
+        - Fix tests on Python 2 following changes in ZODB 5.5.0.
+        
+        
         4.5 (2018-10-10)
         ----------------
         
@@ -56,6 +66,7 @@
         - Make accessing names that have been moved to ``zope.interface``
           produce a ``DeprecationWarning``.
         
+        
         4.4.1 (2017-09-26)
         ------------------
         
@@ -79,6 +90,7 @@
         - Internal test code in ``zope.component.testfiles`` has been adjusted
           and in some cases removed.
         
+        
         4.3.0 (2016-08-26)
         ------------------
         
@@ -89,16 +101,19 @@
         
         - Add support for Python 3.5.
         
+        
         4.2.2 (2015-06-04)
         ------------------
         
         - Fix test cases for PyPy and PyPy3.
         
+        
         4.2.1 (2014-03-19)
         ------------------
         
         - Add support for Python 3.4.
         
+        
         4.2.0 (2014-02-05)
         ------------------
         
@@ -110,6 +125,7 @@
         - Implement ability to specify adapter and utility names in Python. Use
           the ``@zope.component.named(name)`` decorator to specify the name.
         
+        
         4.1.0 (2013-02-28)
         ------------------
         
@@ -121,16 +137,19 @@
         
         - Fix new failing tests.
         
+        
         4.0.2 (2012-12-31)
         ------------------
         
         - Flesh out PyPI Trove classifiers.
         
+        
         4.0.1 (2012-11-21)
         ------------------
         
         - Add support for Python 3.3.
         
+        
         4.0.0 (2012-07-02)
         ------------------
         
@@ -158,17 +177,20 @@
         - Add ``setup.py dev`` alias (runs ``setup.py develop`` plus installs
           ``nose`` and ``coverage``).
         
+        
         3.12.1 (2012-04-02)
         -------------------
         
         - Wrap ``with site(foo)`` in try/finally (LP768151).
         
+        
         3.12.0 (2011-11-16)
         -------------------
         
         - Add convenience function zope.component.hooks.site (a 
contextmanager),
           so one can write ``with site(foo): ...``.
         
+        
         3.11.0 (2011-09-22)
         -------------------
         
@@ -193,6 +215,7 @@
         
         - Depend on ``zope.interface`` >= 3.8.0.
         
+        
         3.10.0 (2010-09-25)
         -------------------
         
@@ -205,16 +228,19 @@
         
         - Add a basic test for the ``configure.zcml`` file provided.
         
+        
         3.9.5 (2010-07-09)
         ------------------
         
         - Fix test requirements specification.
         
+        
         3.9.4 (2010-04-30)
         ------------------
         
         - Prefer the standard library ``doctest`` to the one from 
``zope.testing``.
         
+        
         3.9.3 (2010-03-08)
         ------------------
         
@@ -224,6 +250,7 @@
           method before the load of a ZCML file to register the components in a
           custom registry.
         
+        
         3.9.2 (2010-01-22)
         ------------------
         
@@ -231,12 +258,14 @@
           ``CheckerPublic`` to ``securityAdapterFactory`` wrongly wrapped the 
factory
           into a ``LocatingUntrustedAdapterFactory``.
         
+        
         3.9.1 (2010-01-21)
         ------------------
         
         - Modify the tests to avoid allowing the tested testrunner to be 
influenced
           by options of the outer testrunner, such a the ``-v`` option.
         
+        
         3.9.0 (2010-01-21)
         ------------------
         
@@ -244,6 +273,7 @@
           tests more easily. See ``src/zope/component/testlayer.py`` and
           ``src/zope/component/testlayer.txt``.
         
+        
         3.8.0 (2009-11-16)
         ------------------
         
@@ -259,6 +289,7 @@
         - Move the ``zope.site.hooks`` functionality to 
``zope.component.hooks`` as it
           isn't actually dealing with ``zope.site``'s concept of a site.
         
+        
         3.7.1 (2009-07-24)
         ------------------
         
@@ -280,6 +311,7 @@
             negative consequence of this is that the utility is held in memory
             or in the database even though it isn't used.
         
+        
         3.7.0 (2009-05-21)
         ------------------
         
@@ -288,6 +320,7 @@
         - Add ``zope:view`` and ``zope:resource`` implementations into
           ``zope.component.zcml`` (dependency loaded with ``zope.component 
[zcml]``).
         
+        
         3.6.0 (2009-03-12)
         ------------------
         
@@ -324,6 +357,7 @@
         - Change package's mailing list address to zope-dev at zope.org, 
because
           zope3-dev at zope.org is now retired.
         
+        
         3.5.1 (2008-07-25)
         ------------------
         
@@ -331,6 +365,7 @@
           interfaces declared in Python and always wanted an explicit
           ``provides="..."`` attribute. 
https://bugs.launchpad.net/zope3/+bug/251865
         
+        
         3.5.0 (2008-07-25)
         ------------------
         
@@ -342,11 +377,13 @@
           efficient retrieval of already registered utilities. This avoids 
looping over
           all utilities when registering a new one.
         
+        
         3.4.0 (2007-09-29)
         ------------------
         
         No further changes since 3.4.0a1.
         
+        
         3.4.0a1 (2007-04-22)
         --------------------
         
@@ -356,16 +393,19 @@
           more.  See 
http://wiki.zope.org/zope3/LocalComponentManagementSimplification
           for the proposal describing the changes.
         
+        
         3.2.0.2 (2006-04-15)
         --------------------
         
         - Fix packaging bug:  ``package_dir`` must be a *relative* path.
         
+        
         3.2.0.1 (2006-04-14)
         --------------------
         
         - Packaging change: suppress inclusion of ``setup.cfg`` in ``sdist`` 
builds.
         
+        
         3.2.0 (2006-01-05)
         ------------------
         
@@ -385,6 +425,7 @@
           via a thread global, set during URL traversal.  The ``context`` 
argument
           is now always optional, and should no longer be passed.
         
+        
         3.0.0 (2004-11-07)
         ------------------
         
@@ -402,18 +443,18 @@
 Classifier: Programming Language :: Python :: 2
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
-Classifier: Framework :: Zope3
+Classifier: Framework :: Zope :: 3
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
-Provides-Extra: mintests
-Provides-Extra: persistentregistry
 Provides-Extra: docs
 Provides-Extra: hook
-Provides-Extra: zcml
-Provides-Extra: test
+Provides-Extra: mintests
+Provides-Extra: persistentregistry
 Provides-Extra: security
+Provides-Extra: test
+Provides-Extra: zcml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.component-4.5/docs/api/persistent.rst 
new/zope.component-4.6/docs/api/persistent.rst
--- old/zope.component-4.5/docs/api/persistent.rst      2018-10-10 
13:24:16.000000000 +0200
+++ new/zope.component-4.6/docs/api/persistent.rst      2019-11-12 
11:34:01.000000000 +0100
@@ -16,8 +16,8 @@
 
 .. doctest::
 
-    >>> import ZODB.tests.util
-    >>> db = ZODB.tests.util.DB()
+    >>> import ZODB.MappingStorage
+    >>> db = ZODB.MappingStorage.DB()
     >>> import transaction
     >>> t1 = transaction.TransactionManager()
     >>> c1 = db.open(transaction_manager=t1)
@@ -126,8 +126,8 @@
 
 .. doctest::
 
-    >>> import ZODB.tests.util
-    >>> db = ZODB.tests.util.DB()
+    >>> import ZODB.MappingStorage
+    >>> db = ZODB.MappingStorage.DB()
     >>> import transaction
     >>> t1 = transaction.TransactionManager()
     >>> c1 = db.open(transaction_manager=t1)
@@ -183,8 +183,8 @@
     >>> len(base._v_subregistries)
     0
 
-    >>> import ZODB.tests.util
-    >>> db = ZODB.tests.util.DB()
+    >>> import ZODB.MappingStorage
+    >>> db = ZODB.MappingStorage.DB()
     >>> tm1 = transaction.TransactionManager()
     >>> c1 = db.open(transaction_manager=tm1)
     >>> from zope.component.persistentregistry import PersistentAdapterRegistry
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.component-4.5/docs/socketexample.rst 
new/zope.component-4.6/docs/socketexample.rst
--- old/zope.component-4.5/docs/socketexample.rst       2018-10-10 
13:24:16.000000000 +0200
+++ new/zope.component-4.6/docs/socketexample.rst       2019-11-12 
11:34:01.000000000 +0100
@@ -4,7 +4,7 @@
 The component architecture provides an application framework that provides its
 functionality through loosely-connected components. A *component* can be any
 Python object and has a particular purpose associated with it. Thus, in a
-component-based applications you have many small component in contrast to
+component-based applications you have many small components in contrast to
 classical object-oriented development, where you have a few big objects.
 
 Components communicate via specific APIs, which are formally defined by
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.component-4.5/setup.py 
new/zope.component-4.6/setup.py
--- old/zope.component-4.5/setup.py     2018-10-10 13:24:16.000000000 +0200
+++ new/zope.component-4.6/setup.py     2019-11-12 11:34:01.000000000 +0100
@@ -62,7 +62,7 @@
 
 setup(
     name='zope.component',
-    version='4.5',
+    version='4.6',
     url='https://github.com/zopefoundation/zope.component',
     license='ZPL 2.1',
     description='Zope Component Architecture',
@@ -86,13 +86,13 @@
         "Programming Language :: Python :: 2",
         "Programming Language :: Python :: 2.7",
         "Programming Language :: Python :: 3",
-        "Programming Language :: Python :: 3.4",
         "Programming Language :: Python :: 3.5",
         "Programming Language :: Python :: 3.6",
         "Programming Language :: Python :: 3.7",
+        "Programming Language :: Python :: 3.8",
         "Programming Language :: Python :: Implementation :: CPython",
         "Programming Language :: Python :: Implementation :: PyPy",
-        "Framework :: Zope3",
+        "Framework :: Zope :: 3",
         "Topic :: Software Development :: Libraries :: Python Modules",
     ],
     namespace_packages=['zope',],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zope.component-4.5/src/zope.component.egg-info/PKG-INFO 
new/zope.component-4.6/src/zope.component.egg-info/PKG-INFO
--- old/zope.component-4.5/src/zope.component.egg-info/PKG-INFO 2018-10-10 
13:24:17.000000000 +0200
+++ new/zope.component-4.6/src/zope.component.egg-info/PKG-INFO 2019-11-12 
11:34:01.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: zope.component
-Version: 4.5
+Version: 4.6
 Summary: Zope Component Architecture
 Home-page: https://github.com/zopefoundation/zope.component
 Author: Zope Foundation and Contributors
@@ -44,6 +44,16 @@
         Changes
         =======
         
+        4.6 (2019-11-12)
+        ----------------
+        
+        - Add support for Python 3.8.
+        
+        - Drop support for Python 3.4.
+        
+        - Fix tests on Python 2 following changes in ZODB 5.5.0.
+        
+        
         4.5 (2018-10-10)
         ----------------
         
@@ -56,6 +66,7 @@
         - Make accessing names that have been moved to ``zope.interface``
           produce a ``DeprecationWarning``.
         
+        
         4.4.1 (2017-09-26)
         ------------------
         
@@ -79,6 +90,7 @@
         - Internal test code in ``zope.component.testfiles`` has been adjusted
           and in some cases removed.
         
+        
         4.3.0 (2016-08-26)
         ------------------
         
@@ -89,16 +101,19 @@
         
         - Add support for Python 3.5.
         
+        
         4.2.2 (2015-06-04)
         ------------------
         
         - Fix test cases for PyPy and PyPy3.
         
+        
         4.2.1 (2014-03-19)
         ------------------
         
         - Add support for Python 3.4.
         
+        
         4.2.0 (2014-02-05)
         ------------------
         
@@ -110,6 +125,7 @@
         - Implement ability to specify adapter and utility names in Python. Use
           the ``@zope.component.named(name)`` decorator to specify the name.
         
+        
         4.1.0 (2013-02-28)
         ------------------
         
@@ -121,16 +137,19 @@
         
         - Fix new failing tests.
         
+        
         4.0.2 (2012-12-31)
         ------------------
         
         - Flesh out PyPI Trove classifiers.
         
+        
         4.0.1 (2012-11-21)
         ------------------
         
         - Add support for Python 3.3.
         
+        
         4.0.0 (2012-07-02)
         ------------------
         
@@ -158,17 +177,20 @@
         - Add ``setup.py dev`` alias (runs ``setup.py develop`` plus installs
           ``nose`` and ``coverage``).
         
+        
         3.12.1 (2012-04-02)
         -------------------
         
         - Wrap ``with site(foo)`` in try/finally (LP768151).
         
+        
         3.12.0 (2011-11-16)
         -------------------
         
         - Add convenience function zope.component.hooks.site (a 
contextmanager),
           so one can write ``with site(foo): ...``.
         
+        
         3.11.0 (2011-09-22)
         -------------------
         
@@ -193,6 +215,7 @@
         
         - Depend on ``zope.interface`` >= 3.8.0.
         
+        
         3.10.0 (2010-09-25)
         -------------------
         
@@ -205,16 +228,19 @@
         
         - Add a basic test for the ``configure.zcml`` file provided.
         
+        
         3.9.5 (2010-07-09)
         ------------------
         
         - Fix test requirements specification.
         
+        
         3.9.4 (2010-04-30)
         ------------------
         
         - Prefer the standard library ``doctest`` to the one from 
``zope.testing``.
         
+        
         3.9.3 (2010-03-08)
         ------------------
         
@@ -224,6 +250,7 @@
           method before the load of a ZCML file to register the components in a
           custom registry.
         
+        
         3.9.2 (2010-01-22)
         ------------------
         
@@ -231,12 +258,14 @@
           ``CheckerPublic`` to ``securityAdapterFactory`` wrongly wrapped the 
factory
           into a ``LocatingUntrustedAdapterFactory``.
         
+        
         3.9.1 (2010-01-21)
         ------------------
         
         - Modify the tests to avoid allowing the tested testrunner to be 
influenced
           by options of the outer testrunner, such a the ``-v`` option.
         
+        
         3.9.0 (2010-01-21)
         ------------------
         
@@ -244,6 +273,7 @@
           tests more easily. See ``src/zope/component/testlayer.py`` and
           ``src/zope/component/testlayer.txt``.
         
+        
         3.8.0 (2009-11-16)
         ------------------
         
@@ -259,6 +289,7 @@
         - Move the ``zope.site.hooks`` functionality to 
``zope.component.hooks`` as it
           isn't actually dealing with ``zope.site``'s concept of a site.
         
+        
         3.7.1 (2009-07-24)
         ------------------
         
@@ -280,6 +311,7 @@
             negative consequence of this is that the utility is held in memory
             or in the database even though it isn't used.
         
+        
         3.7.0 (2009-05-21)
         ------------------
         
@@ -288,6 +320,7 @@
         - Add ``zope:view`` and ``zope:resource`` implementations into
           ``zope.component.zcml`` (dependency loaded with ``zope.component 
[zcml]``).
         
+        
         3.6.0 (2009-03-12)
         ------------------
         
@@ -324,6 +357,7 @@
         - Change package's mailing list address to zope-dev at zope.org, 
because
           zope3-dev at zope.org is now retired.
         
+        
         3.5.1 (2008-07-25)
         ------------------
         
@@ -331,6 +365,7 @@
           interfaces declared in Python and always wanted an explicit
           ``provides="..."`` attribute. 
https://bugs.launchpad.net/zope3/+bug/251865
         
+        
         3.5.0 (2008-07-25)
         ------------------
         
@@ -342,11 +377,13 @@
           efficient retrieval of already registered utilities. This avoids 
looping over
           all utilities when registering a new one.
         
+        
         3.4.0 (2007-09-29)
         ------------------
         
         No further changes since 3.4.0a1.
         
+        
         3.4.0a1 (2007-04-22)
         --------------------
         
@@ -356,16 +393,19 @@
           more.  See 
http://wiki.zope.org/zope3/LocalComponentManagementSimplification
           for the proposal describing the changes.
         
+        
         3.2.0.2 (2006-04-15)
         --------------------
         
         - Fix packaging bug:  ``package_dir`` must be a *relative* path.
         
+        
         3.2.0.1 (2006-04-14)
         --------------------
         
         - Packaging change: suppress inclusion of ``setup.cfg`` in ``sdist`` 
builds.
         
+        
         3.2.0 (2006-01-05)
         ------------------
         
@@ -385,6 +425,7 @@
           via a thread global, set during URL traversal.  The ``context`` 
argument
           is now always optional, and should no longer be passed.
         
+        
         3.0.0 (2004-11-07)
         ------------------
         
@@ -402,18 +443,18 @@
 Classifier: Programming Language :: Python :: 2
 Classifier: Programming Language :: Python :: 2.7
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
-Classifier: Framework :: Zope3
+Classifier: Framework :: Zope :: 3
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
-Provides-Extra: mintests
-Provides-Extra: persistentregistry
 Provides-Extra: docs
 Provides-Extra: hook
-Provides-Extra: zcml
-Provides-Extra: test
+Provides-Extra: mintests
+Provides-Extra: persistentregistry
 Provides-Extra: security
+Provides-Extra: test
+Provides-Extra: zcml
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zope.component-4.5/src/zope.component.egg-info/SOURCES.txt 
new/zope.component-4.6/src/zope.component.egg-info/SOURCES.txt
--- old/zope.component-4.5/src/zope.component.egg-info/SOURCES.txt      
2018-10-10 13:24:17.000000000 +0200
+++ new/zope.component-4.6/src/zope.component.egg-info/SOURCES.txt      
2019-11-12 11:34:01.000000000 +0100
@@ -1,5 +1,4 @@
 .coveragerc
-.gitignore
 .travis.yml
 CHANGES.rst
 COPYRIGHT.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/zope.component-4.5/src/zope.component.egg-info/requires.txt 
new/zope.component-4.6/src/zope.component.egg-info/requires.txt
--- old/zope.component-4.5/src/zope.component.egg-info/requires.txt     
2018-10-10 13:24:17.000000000 +0200
+++ new/zope.component-4.6/src/zope.component.egg-info/requires.txt     
2019-11-12 11:34:01.000000000 +0100
@@ -7,8 +7,8 @@
 
 [docs]
 Sphinx
-repoze.sphinx.autointerface
 ZODB
+repoze.sphinx.autointerface
 
 [hook]
 
@@ -27,14 +27,14 @@
 zope.security
 
 [test]
+persistent
 zope.configuration
 zope.i18nmessageid
-zope.testing
-zope.testrunner
-persistent
 zope.location
 zope.proxy
 zope.security
+zope.testing
+zope.testrunner
 
 [zcml]
 zope.configuration
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zope.component-4.5/tox.ini 
new/zope.component-4.6/tox.ini
--- old/zope.component-4.5/tox.ini      2018-10-10 13:24:16.000000000 +0200
+++ new/zope.component-4.6/tox.ini      2019-11-12 11:34:01.000000000 +0100
@@ -2,7 +2,7 @@
 envlist =
 # Jython support pending 2.7 support, due 2012-07-15 or so.  See:
 # http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
-    py27,py27-minimal,pypy,py34,py35,py36,py37,pypy3,docs,coverage
+    py27,py35,py36,py37,py38,py27-minimal,pypy,pypy3,docs,coverage
 
 [mindeps]
 deps =


Reply via email to