File tree 6 files changed +37
-5
lines changed
6 files changed +37
-5
lines changed Original file line number Diff line number Diff line change 5
5
.. contents::
6
6
:local:
7
7
8
+ .. _version-3.1.10:
9
+
10
+ 3.1.10
11
+ ======
12
+ :release-date: 2014-03-31 04:00 P.M UTC
13
+
14
+ - Test suite Django version compatibility fixes
15
+
16
+ Contributed by Spencer Ellinor
17
+
18
+ - Admin: Model forms now defines ``fields`` and ``exclude`` attributes
19
+ (Issue #311)
20
+
21
+ Contributed by David Fischer.
22
+
23
+ - Models: ``get_query_set`` renamed to ``get_queryset`` (but alias available)
24
+ (Issue #308).
25
+
26
+ Contributed by David Fischer.
27
+
28
+ - Admin: Fixed bug in ``humanize.py``.
29
+
30
+ Contributed by koodjo.
31
+
32
+ - Support for Django 1.8's ``DiscoverRunner``.
33
+
34
+ Contributed by David Fischer.
35
+
36
+ - Snapshot: Fixed time stamp timezone issue.
37
+
38
+ Contributed by Michael van Tellingen.
39
+
8
40
.. _version-3.1.9:
9
41
10
42
3.1.9
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.9
7
+ :Version: 3.1.10
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/
Original file line number Diff line number Diff line change 5
5
6
6
import os
7
7
8
- VERSION = (3 , 1 , 9 )
8
+ VERSION = (3 , 1 , 10 )
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 1
- celery>=3.1.9
1
+ celery>=3.1.10
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ all_files = 1
7
7
upload-dir = docs/.build/html
8
8
9
9
[bdist_rpm]
10
- requires = celery >= 3.1.1
10
+ requires = celery >= 3.1.10
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ def extra_args(self):
178
178
data_files = data_files ,
179
179
zip_safe = False ,
180
180
install_requires = [
181
- 'celery>=3.1.9 ' ,
181
+ 'celery>=3.1.10 ' ,
182
182
],
183
183
cmdclass = {'test' : RunTests ,
184
184
'quicktest' : QuickRunTests ,
You can’t perform that action at this time.
0 commit comments