diff options
-rw-r--r-- | Changelog | 13 | ||||
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | setup.py | 5 |
3 files changed, 17 insertions, 3 deletions
@@ -5,6 +5,19 @@ py-amqp is fork of amqplib used by Kombu containing additional features and impr The previous amqplib changelog is here: http://code.google.com/p/py-amqplib/source/browse/CHANGES +.. _version-2.5.1: + +2.5.1 +===== +:release-date: 2019-08-14 22.00 P.M UTC+6:00 +:release-by: Asif Saif Uddin + +- Ignore all methods except Close and Close-OK when channel/connection is closing +- Fix faulty ssl sni intiation parameters (#283) +- Undeprecate auto_delete flag for exchanges. (#287) +- Improved tests and testing environments + + .. _version-2.5.0: 2.5.0 @@ -4,7 +4,7 @@ |build-status| |coverage| |license| |wheel| |pyversion| |pyimp| -:Version: 2.4.2 +:Version: 2.5.1 :Web: https://amqp.readthedocs.io/ :Download: https://pypi.org/project/amqp/ :Source: http://github.com/celery/py-amqp/ @@ -22,7 +22,6 @@ classes = """ 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 @@ -46,6 +45,7 @@ def add_default(m): def add_doc(m): return (('doc', m.groups()[0]),) + pats = {re_meta: add_default, re_doc: add_doc} here = os.path.abspath(os.path.dirname(__file__)) @@ -102,6 +102,7 @@ class pytest(setuptools.command.test.test): pytest_args = self.pytest_args.split(' ') sys.exit(pytest.main(pytest_args)) + setuptools.setup( name=NAME, packages=setuptools.find_packages(exclude=['ez_setup', 't', 't.*']), @@ -116,7 +117,7 @@ setuptools.setup( platforms=['any'], license='BSD', classifiers=classifiers, - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", + python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", install_requires=reqs('default.txt'), tests_require=reqs('test.txt'), cmdclass={'test': pytest}, |