Kombu 3.1 is now Kombu 4.0

This commit is contained in:
Ask Solem 2015-10-20 14:05:09 -07:00
parent 89e5ded062
commit bf8cd411e9
4 changed files with 7 additions and 7 deletions

View File

@ -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:

View File

@ -6,7 +6,7 @@
|build-status| |coverage-status|
:Version: 3.1.0a1
:Version: 4.0.0a1
`Kombu` is a messaging library for Python.

View File

@ -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

View File

@ -11,7 +11,7 @@ extra = {}
PY3 = sys.version_info[0] == 3
if sys.version_info < (2, 7):
raise Exception('Kombu requires Python 2.7 or higher.')
raise Exception('Kombu 4.0 requires Python 2.7 or higher.')
try:
from setuptools import setup