Skip to content

Commit

Permalink
Bump celery to 4.1.1 (#5134)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
mistercrunch authored Jun 4, 2018
1 parent ffd65ce commit d2bc4ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions UPDATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_git_sha():
install_requires=[
'bleach',
'boto3>=1.4.6',
'celery',
'celery>=4.1.1',
'colorama',
'contextlib2',
'cryptography',
Expand Down

0 comments on commit d2bc4ec

Please sign in to comment.