Skip to content

Commit

Permalink
version 4.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
auvipy committed Jun 6, 2019
1 parent e65bddb commit 0f89196
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
11 changes: 10 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,16 @@
Change history
================

.. _version-4.6.0:
.. _version-4.6.1:

4.6.1
=====
:release-date: 2019-06-06 10:30 A.M UTC+6:00
:release-by: Asif Saif Uddin

- Fix some newly introduced bug in kombu 4.6

.. _version-4.6.1:

4.6.0
=====
Expand Down
7 changes: 4 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

|build-status| |coverage| |license| |wheel| |pyversion| |pyimp| |[![Downloads](https://pepy.tech/badge/kombu)](https://pepy.tech/project/kombu)|

:Version: 4.5.0
:Version: 4.6.1
:Documentation: https://kombu.readthedocs.io/
:Download: https://pypi.org/project/kombu/
:Source: https://github.com/celery/kombu/
Expand Down Expand Up @@ -355,6 +355,7 @@ file in the top distribution directory for the full license text.
:target: https://pypi.org/project/kombu/

.. |pyimp| image:: https://img.shields.io/pypi/implementation/kombu.svg
:alt: Support Python implementations.
:target: https://pypi.org/project/kombu/
:alt: Support Python implementations.
:target: https://pypi.org/project/kombu/
--

2 changes: 1 addition & 1 deletion kombu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from collections import namedtuple # noqa

__version__ = '4.6.0'
__version__ = '4.6.1'
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'
__homepage__ = 'https://kombu.readthedocs.io'
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ def fullsplit(path, result=None):
for scheme in list(INSTALL_SCHEMES.values()):
scheme['data'] = scheme['purelib']

if os.path.exists('README.rst'):
long_description = codecs.open('README.rst', 'r', 'utf-8').read()
else:
long_description = 'See https://pypi.org/project/kombu/'
#if os.path.exists('README.rst'):
# long_description = codecs.open('README.rst', 'r', 'utf-8').read()
#else:
# long_description = 'See https://pypi.org/project/kombu/'

# -*- Installation Requires -*-
py_version = sys.version_info
Expand Down Expand Up @@ -106,7 +106,7 @@ def run_tests(self):
packages=setuptools.find_packages(exclude=['t', 't.*']),
version=meta['version'],
description=meta['doc'],
long_description=long_description,
# long_description=long_description,
keywords='messaging message amqp rabbitmq redis actor producer consumer',
author=meta['author'],
author_email=meta['contact'],
Expand Down

0 comments on commit 0f89196

Please sign in to comment.