From 7db07913a350bbb2cdb0db7a24332344c687fa22 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Mon, 24 Oct 2016 15:24:44 -0700 Subject: [PATCH] Adds requirements/extras/django.txt --- docs/includes/installation.txt | 7 +++++++ requirements/extras/django.txt | 1 + setup.py | 1 + 3 files changed, 9 insertions(+) create mode 100644 requirements/extras/django.txt diff --git a/docs/includes/installation.txt b/docs/includes/installation.txt index 76c26ab504d..2d948d9505d 100644 --- a/docs/includes/installation.txt +++ b/docs/includes/installation.txt @@ -103,6 +103,13 @@ Transports and Backends :``celery[consul]``: for using the Consul.io Key/Value store as a message transport or result backend (*experimental*). +:``celery[django]`` + specifies the lowest version possible for Django support. + + You should probably not use this in your requirements, it's here + for informational purposes only. + + .. _celery-installing-from-source: Downloading and installing from source diff --git a/requirements/extras/django.txt b/requirements/extras/django.txt new file mode 100644 index 00000000000..531dd9b28e4 --- /dev/null +++ b/requirements/extras/django.txt @@ -0,0 +1 @@ +Django>=1.8 diff --git a/setup.py b/setup.py index 943312ce18f..e33ad9bc5a9 100644 --- a/setup.py +++ b/setup.py @@ -56,6 +56,7 @@ def _pyimp(): EXTENSIONS = { 'auth', 'cassandra', + 'django', 'elasticsearch', 'memcache', 'pymemcache',