mirror of https://github.com/celery/kombu.git
Kombu 3.1 is now Kombu 4.0
This commit is contained in:
parent
89e5ded062
commit
bf8cd411e9
|
@ -4,10 +4,10 @@
|
|||
Change history
|
||||
================
|
||||
|
||||
.. _version-3.1.0:
|
||||
.. _version-4.0:
|
||||
|
||||
3.1.0
|
||||
=====
|
||||
4.0
|
||||
===
|
||||
:release-date: TBA
|
||||
|
||||
.. _version-3.0.26:
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
|build-status| |coverage-status|
|
||||
|
||||
:Version: 3.1.0a1
|
||||
:Version: 4.0.0a1
|
||||
|
||||
`Kombu` is a messaging library for Python.
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ version_info_t = namedtuple(
|
|||
'version_info_t', ('major', 'minor', 'micro', 'releaselevel', 'serial'),
|
||||
)
|
||||
|
||||
VERSION = version_info_t(3, 1, 0, 'a1', '')
|
||||
VERSION = version_info_t(4, 0, 0, 'a1', '')
|
||||
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
|
||||
__author__ = 'Ask Solem'
|
||||
__contact__ = 'ask@celeryproject.org'
|
||||
|
@ -20,7 +20,7 @@ __docformat__ = 'restructuredtext en'
|
|||
# -eof meta-
|
||||
|
||||
if sys.version_info < (2, 7): # pragma: no cover
|
||||
raise Exception('Kombu 3.1 requires Python versions 2.7 or later.')
|
||||
raise Exception('Kombu 4.0 requires Python versions 2.7 or later.')
|
||||
|
||||
STATICA_HACK = True
|
||||
globals()['kcah_acitats'[::-1].upper()] = False
|
||||
|
|
Loading…
Reference in New Issue