File tree Expand file tree Collapse file tree 4 files changed +35
-12
lines changed Expand file tree Collapse file tree 4 files changed +35
-12
lines changed Original file line number Diff line number Diff line change 5
5
.. contents::
6
6
:local:
7
7
8
+ .. _version-3.1.9:
9
+
10
+ 3.1.9
11
+ =====
12
+ :release-date: 2014-02-13 04:00 P.M UTC
13
+
14
+ - TestSuiteRunner should now be working again.
15
+
16
+ - The `celery worker' management command now gives a proper error message
17
+ when positional arguments are provided.
18
+
19
+ Fix contributed by Brett Gibson.
20
+
21
+ - celerycam: The cleanup phase now commits the transaction for every row
22
+ deleted.
23
+
24
+ This is likely to make the cleanup considerably slower, but needs to work
25
+ with Django 1.6.
26
+
27
+ - The `celery` management command now performs validation checks (Issue #253).
28
+
29
+ - Url handlers: Fixed compatibility with Django 1.2
30
+
31
+ Fix contributed by dongweiming.
32
+
8
33
.. _version-3.1.1:
9
34
10
35
3.1.1
Original file line number Diff line number Diff line change 4
4
5
5
.. image :: http://cloud.github.com/downloads/celery/celery/celery_128.png
6
6
7
- :Version: 3.1.1
7
+ :Version: 3.1.9
8
8
:Web: http://celeryproject.org/
9
9
:Download: http://pypi.python.org/pypi/django-celery/
10
10
:Source: http://github.com/celery/django-celery/
13
13
14
14
--
15
15
16
- ** THIS LIBRARY IS NO LONGER REQUIRED **
16
+ .. warning ::
17
17
18
- Since Celery 3.1 you can now use Celery with Django directly,
19
- so new users should not be using this library for integration.
18
+ **THIS PROJECT IS NO LONGER REQUIRED **
20
19
21
- Django-celery may still be used for the database result backend,
22
- and the Django periodic task admin, but these are optional features.
20
+ Please follow the new tutorial at:
23
21
24
- See the new Django tutorial at:
22
+ http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html
25
23
26
- https://docs.celeryproject.org/en/latest/ django/first-steps-with-django.html
27
-
28
- The old README follows below .
24
+ django-celery provides Celery integration for Django; Using the Django ORM
25
+ and cache backend for storing results, autodiscovery of task modules
26
+ for applications listed in `` INSTALLED_APPS ``, and more .
29
27
30
28
Using django-celery
31
29
===================
Original file line number Diff line number Diff line change 5
5
6
6
import os
7
7
8
- VERSION = (3 , 1 , 1 )
8
+ VERSION = (3 , 1 , 9 )
9
9
__version__ = '.' .join (map (str , VERSION [0 :3 ])) + '' .join (VERSION [3 :])
10
10
__author__ = 'Ask Solem'
11
11
Original file line number Diff line number Diff line change 4
4
5
5
.. image :: http://cloud.github.com/downloads/celery/celery/celery_128.png
6
6
7
- :Version: 3.1.1
7
+ :Version: 3.1.9
8
8
:Web: http://celeryproject.org/
9
9
:Download: http://pypi.python.org/pypi/django-celery/
10
10
:Source: http://github.com/celery/django-celery/
You can’t perform that action at this time.
0 commit comments