Skip to content

Commit d2bc4ec

Browse files
authored
Bump celery to 4.1.1 (apache#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
1 parent ffd65ce commit d2bc4ec

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

UPDATING.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
This file documents any backwards-incompatible changes in Superset and
44
assists people when migrating to a new version.
55

6+
## Superset 0.26.0
7+
* Superset 0.26.0 deprecates the `superset worker` CLI, which is a simple
8+
wrapper around the `celery worker` command, forcing you into crafting
9+
your own native `celery worker` command. Your command should look something
10+
like `celery worker --app=superset.sql_lab:celery_app --pool=gevent -Ofair`
11+
612
## Superset 0.25.0
713
Superset 0.25.0 contains a backwards incompatible changes.
814
If you run a production system you should schedule downtime for this

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
bleach==2.1.2
22
boto3==1.4.7
3-
celery==4.1.0
3+
celery==4.1.1
44
colorama==0.3.9
55
cryptography==1.9
66
flask==0.12.2

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def get_git_sha():
5252
install_requires=[
5353
'bleach',
5454
'boto3>=1.4.6',
55-
'celery',
55+
'celery>=4.1.1',
5656
'colorama',
5757
'contextlib2',
5858
'cryptography',

0 commit comments

Comments
 (0)