diff -Nru zope.deprecation-4.3.0/CHANGES.rst zope.deprecation-4.4.0/CHANGES.rst --- zope.deprecation-4.3.0/CHANGES.rst 2017-08-07 19:23:53.000000000 +0000 +++ zope.deprecation-4.4.0/CHANGES.rst 2018-12-03 13:35:20.000000000 +0000 @@ -2,6 +2,12 @@ ``zope.deprecation`` Changelog ================================ +4.4.0 (2018-12-03) +================== + +- Add support for Python 3.7. + + 4.3.0 (2017-08-07) ================== diff -Nru zope.deprecation-4.3.0/debian/changelog zope.deprecation-4.4.0/debian/changelog --- zope.deprecation-4.3.0/debian/changelog 2018-10-10 05:02:23.000000000 +0000 +++ zope.deprecation-4.4.0/debian/changelog 2018-12-12 13:33:21.000000000 +0000 @@ -1,3 +1,9 @@ +zope.deprecation (4.4.0-1) unstable; urgency=medium + + * New upstream version 4.4.0 + + -- TANIGUCHI Takaki Wed, 12 Dec 2018 22:33:21 +0900 + zope.deprecation (4.3.0-1) unstable; urgency=medium * New upstream version 4.3.0 diff -Nru zope.deprecation-4.3.0/PKG-INFO zope.deprecation-4.4.0/PKG-INFO --- zope.deprecation-4.3.0/PKG-INFO 2017-08-07 19:23:54.000000000 +0000 +++ zope.deprecation-4.4.0/PKG-INFO 2018-12-03 13:35:21.000000000 +0000 @@ -1,8 +1,8 @@ -Metadata-Version: 1.1 +Metadata-Version: 2.1 Name: zope.deprecation -Version: 4.3.0 +Version: 4.4.0 Summary: Zope Deprecation Infrastructure -Home-page: http://github.com/zopefoundation/zope.deprecation +Home-page: https://github.com/zopefoundation/zope.deprecation Author: Zope Corporation and Contributors Author-email: zope-dev@zope.org License: ZPL 2.1 @@ -18,14 +18,14 @@ :target: https://pypi.org/project/zope.deprecation/ :alt: Supported Python versions - .. image:: https://travis-ci.org/zopefoundation/zope.deprecation.png?branch=master + .. image:: https://travis-ci.org/zopefoundation/zope.deprecation.svg?branch=master :target: https://travis-ci.org/zopefoundation/zope.deprecation .. image:: https://coveralls.io/repos/github/zopefoundation/zope.deprecation/badge.svg?branch=master :target: https://coveralls.io/github/zopefoundation/zope.deprecation?branch=master .. image:: https://readthedocs.org/projects/zopedeprecation/badge/?version=latest - :target: httpl://zopedeprecation.readthedocs.io/en/latest/ + :target: https://zopedeprecation.readthedocs.io/en/latest/ :alt: Documentation Status @@ -39,6 +39,12 @@ ``zope.deprecation`` Changelog ================================ + 4.4.0 (2018-12-03) + ================== + + - Add support for Python 3.7. + + 4.3.0 (2017-08-07) ================== @@ -159,6 +165,9 @@ 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 :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy -Classifier: Framework :: Zope3 +Classifier: Framework :: Zope :: 3 +Provides-Extra: docs +Provides-Extra: test diff -Nru zope.deprecation-4.3.0/README.rst zope.deprecation-4.4.0/README.rst --- zope.deprecation-4.3.0/README.rst 2017-08-07 19:23:53.000000000 +0000 +++ zope.deprecation-4.4.0/README.rst 2018-12-03 13:35:20.000000000 +0000 @@ -10,14 +10,14 @@ :target: https://pypi.org/project/zope.deprecation/ :alt: Supported Python versions -.. image:: https://travis-ci.org/zopefoundation/zope.deprecation.png?branch=master +.. image:: https://travis-ci.org/zopefoundation/zope.deprecation.svg?branch=master :target: https://travis-ci.org/zopefoundation/zope.deprecation .. image:: https://coveralls.io/repos/github/zopefoundation/zope.deprecation/badge.svg?branch=master :target: https://coveralls.io/github/zopefoundation/zope.deprecation?branch=master .. image:: https://readthedocs.org/projects/zopedeprecation/badge/?version=latest - :target: httpl://zopedeprecation.readthedocs.io/en/latest/ + :target: https://zopedeprecation.readthedocs.io/en/latest/ :alt: Documentation Status diff -Nru zope.deprecation-4.3.0/setup.py zope.deprecation-4.4.0/setup.py --- zope.deprecation-4.3.0/setup.py 2017-08-07 19:23:53.000000000 +0000 +++ zope.deprecation-4.4.0/setup.py 2018-12-03 13:35:20.000000000 +0000 @@ -29,8 +29,8 @@ setup( name='zope.deprecation', - version='4.3.0', - url='http://github.com/zopefoundation/zope.deprecation', + version='4.4.0', + url='https://github.com/zopefoundation/zope.deprecation', license='ZPL 2.1', description='Zope Deprecation Infrastructure', author='Zope Corporation and Contributors', @@ -50,9 +50,10 @@ "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", - "Framework :: Zope3", + "Framework :: Zope :: 3", ], package_dir={'': 'src'}, packages=find_packages('src'), diff -Nru zope.deprecation-4.3.0/src/zope.deprecation.egg-info/PKG-INFO zope.deprecation-4.4.0/src/zope.deprecation.egg-info/PKG-INFO --- zope.deprecation-4.3.0/src/zope.deprecation.egg-info/PKG-INFO 2017-08-07 19:23:54.000000000 +0000 +++ zope.deprecation-4.4.0/src/zope.deprecation.egg-info/PKG-INFO 2018-12-03 13:35:21.000000000 +0000 @@ -1,8 +1,8 @@ -Metadata-Version: 1.1 +Metadata-Version: 2.1 Name: zope.deprecation -Version: 4.3.0 +Version: 4.4.0 Summary: Zope Deprecation Infrastructure -Home-page: http://github.com/zopefoundation/zope.deprecation +Home-page: https://github.com/zopefoundation/zope.deprecation Author: Zope Corporation and Contributors Author-email: zope-dev@zope.org License: ZPL 2.1 @@ -18,14 +18,14 @@ :target: https://pypi.org/project/zope.deprecation/ :alt: Supported Python versions - .. image:: https://travis-ci.org/zopefoundation/zope.deprecation.png?branch=master + .. image:: https://travis-ci.org/zopefoundation/zope.deprecation.svg?branch=master :target: https://travis-ci.org/zopefoundation/zope.deprecation .. image:: https://coveralls.io/repos/github/zopefoundation/zope.deprecation/badge.svg?branch=master :target: https://coveralls.io/github/zopefoundation/zope.deprecation?branch=master .. image:: https://readthedocs.org/projects/zopedeprecation/badge/?version=latest - :target: httpl://zopedeprecation.readthedocs.io/en/latest/ + :target: https://zopedeprecation.readthedocs.io/en/latest/ :alt: Documentation Status @@ -39,6 +39,12 @@ ``zope.deprecation`` Changelog ================================ + 4.4.0 (2018-12-03) + ================== + + - Add support for Python 3.7. + + 4.3.0 (2017-08-07) ================== @@ -159,6 +165,9 @@ 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 :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy -Classifier: Framework :: Zope3 +Classifier: Framework :: Zope :: 3 +Provides-Extra: docs +Provides-Extra: test diff -Nru zope.deprecation-4.3.0/tox.ini zope.deprecation-4.4.0/tox.ini --- zope.deprecation-4.3.0/tox.ini 2017-08-07 19:23:53.000000000 +0000 +++ zope.deprecation-4.4.0/tox.ini 2018-12-03 13:35:20.000000000 +0000 @@ -1,6 +1,6 @@ [tox] envlist = - py27,py34,py35,py36,pypy,pypy3,docs + py27,py34,py35,py36,py37,pypy,pypy3,docs [testenv] usedevelop = true diff -Nru zope.deprecation-4.3.0/.travis.yml zope.deprecation-4.4.0/.travis.yml --- zope.deprecation-4.3.0/.travis.yml 2017-08-07 19:23:53.000000000 +0000 +++ zope.deprecation-4.4.0/.travis.yml 2018-12-03 13:35:20.000000000 +0000 @@ -1,12 +1,15 @@ language: python -sudo: false python: - 2.7 - 3.4 - 3.5 - 3.6 - - pypy-5.6.0 - - pypy3.5-5.8.0 + - pypy + - pypy3 +jobs: + include: + - python: 3.7 + dist: xenial script: - coverage run -m zope.testrunner --test-path=src - coverage run -a -m sphinx -b doctest -d docs/_build/doctrees docs docs/_build/doctest