You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2018/06/04 21:54:43 UTC

[incubator-superset] branch master updated: Bump celery to 4.1.1 (#5134)

This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git


The following commit(s) were added to refs/heads/master by this push:
     new d2bc4ec   Bump celery to 4.1.1 (#5134)
d2bc4ec is described below

commit d2bc4ece3ebece5434db0a0764471ac122fbc302
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Mon Jun 4 14:54:36 2018 -0700

     Bump celery to 4.1.1 (#5134)
    
    * Bump celery to 4.1.1
    
    Docs reference `celery worker --app=superset.sql_lab:celery_app
    --pool=gevent -Ofair` command which seems only to work with Celery 4.1.1
    
    * Add UPDATING.md message
---
 UPDATING.md      | 6 ++++++
 requirements.txt | 2 +-
 setup.py         | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/UPDATING.md b/UPDATING.md
index 78607ff..3991b70 100644
--- a/UPDATING.md
+++ b/UPDATING.md
@@ -3,6 +3,12 @@
 This file documents any backwards-incompatible changes in Superset and
 assists people when migrating to a new version.
 
+## Superset 0.26.0
+* Superset 0.26.0 deprecates the `superset worker` CLI, which is a simple
+wrapper around the `celery worker` command, forcing you into crafting
+your own native `celery worker` command. Your command should look something
+like `celery worker --app=superset.sql_lab:celery_app --pool=gevent -Ofair`
+
 ## Superset 0.25.0
 Superset 0.25.0 contains a backwards incompatible changes.
 If you run a production system you should schedule downtime for this
diff --git a/requirements.txt b/requirements.txt
index 554ff90..77ec856 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,6 +1,6 @@
 bleach==2.1.2
 boto3==1.4.7
-celery==4.1.0
+celery==4.1.1
 colorama==0.3.9
 cryptography==1.9
 flask==0.12.2
diff --git a/setup.py b/setup.py
index d222b8c..fdcb7d7 100644
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,7 @@ setup(
     install_requires=[
         'bleach',
         'boto3>=1.4.6',
-        'celery',
+        'celery>=4.1.1',
         'colorama',
         'contextlib2',
         'cryptography',

-- 
To stop receiving notification emails like this one, please contact
maximebeauchemin@apache.org.