Browse Source

Now depends on Kombu 1.3.0

Ask Solem 13 years ago
parent
commit
e60e07e07c
4 changed files with 5 additions and 3 deletions
  1. 2 0
      Changelog
  2. 1 1
      requirements/default.txt
  3. 1 1
      setup.cfg
  4. 1 1
      setup.py

+ 2 - 0
Changelog

@@ -15,6 +15,8 @@
 Important Notes
 ---------------
 
+* Now depends on Kombu 1.3.0
+
 * The deprecated :func:`celery.loaders.setup_loader` function has been removed.
 
 * Deprecations

+ 1 - 1
requirements/default.txt

@@ -1,4 +1,4 @@
 python-dateutil>=1.5.0,<2.0.0
 anyjson>=0.3.1
-kombu>=1.2.1,<2.0.0
+kombu>=1.3.0,<2.0.0
 pyparsing>=1.5.0,<2.0.0

+ 1 - 1
setup.cfg

@@ -44,5 +44,5 @@ requires = uuid
            multiprocessing == 2.6.2.1
            python-dateutil >= 1.5.0
            anyjson >= 0.3.1
-           kombu >= 1.2.1
+           kombu >= 1.3.0
            pyparsing >= 1.5.0

+ 1 - 1
setup.py

@@ -50,7 +50,7 @@ except ImportError:
 install_requires.extend([
     "python-dateutil>=1.5.0,<2.0.0",
     "anyjson>=0.3.1",
-    "kombu>=1.2.1,<2.0.0",
+    "kombu>=1.3.0,<2.0.0",
     "pyparsing>=1.5.0,<2.0.0",
 ])
 if is_py3k: