Skip to content

Commit bf787c5

Browse files
committed
Bumps version to 3.1.1 and updates Changelog
1 parent afe17fb commit bf787c5

File tree

8 files changed

+23
-14
lines changed

8 files changed

+23
-14
lines changed

Changelog

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
3.1.1
1111
=====
12-
:release-date: 2013-11-11 XX:XX X.X UTC
12+
:release-date: 2013-11-11 07:30 P.M UTC
1313

1414
- Fixed Python 3 compatibility problems.
1515

@@ -38,7 +38,8 @@
3838

3939
Fix contributed by Alvaro Vega.
4040

41-
- find_related_module now handles import errors (Issue #226).
41+
- Autodiscovery now warns instead of propagating import
42+
errors (Issue #226).
4243

4344
.. _version-3.1.0:
4445

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
.. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png
66

7-
:Version: 3.1.0
7+
:Version: 3.1.1
88
:Web: http://celeryproject.org/
99
:Download: http://pypi.python.org/pypi/django-celery/
1010
:Source: http://github.com/celery/django-celery/

djcelery/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import os
77

8-
VERSION = (3, 1, 0)
8+
VERSION = (3, 1, 1)
99
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
1010
__author__ = 'Ask Solem'
1111
__contact__ = '[email protected]'

djcelery/tests/test_discovery.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
from __future__ import absolute_import, unicode_literals
22

3+
import warnings
4+
35
from django.conf import settings
46

57
from celery.registry import tasks
@@ -21,10 +23,13 @@ def test_discovery(self):
2123
self.assertDiscovery()
2224

2325
def test_discovery_with_broken(self):
26+
warnings.resetwarnings()
2427
if 'someapp' in settings.INSTALLED_APPS:
2528
installed_apps = list(settings.INSTALLED_APPS)
2629
settings.INSTALLED_APPS = installed_apps + ['xxxnot.aexist']
2730
try:
28-
self.assertRaises(ImportError, autodiscover)
31+
with warnings.catch_warnings(record=True) as log:
32+
autodiscover()
33+
self.assertTrue(log)
2934
finally:
3035
settings.INSTALLED_APPS = installed_apps

docs/introduction.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
.. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png
66

7-
:Version: 3.1.0b2
7+
:Version: 3.1.1
88
:Web: http://celeryproject.org/
99
:Download: http://pypi.python.org/pypi/django-celery/
1010
:Source: http://github.com/celery/django-celery/
@@ -13,6 +13,14 @@
1313

1414
--
1515

16+
.. warning::
17+
18+
**THIS PROJECT IS NO LONGER REQUIRED**
19+
20+
Please follow the new tutorial at:
21+
22+
http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html
23+
1624
django-celery provides Celery integration for Django; Using the Django ORM
1725
and cache backend for storing results, autodiscovery of task modules
1826
for applications listed in ``INSTALLED_APPS``, and more.

requirements/default.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
celery>=3.1
1+
celery>=3.1.1

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ all_files = 1
77
upload-dir = docs/.build/html
88

99
[bdist_rpm]
10-
requires = celery >= 3.1
10+
requires = celery >= 3.1.1

setup.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,7 @@ def extra_args(self):
178178
data_files=data_files,
179179
zip_safe=False,
180180
install_requires=[
181-
'pytz>dev',
182-
'celery>=3.0.11',
181+
'celery>=3.1.1',
183182
],
184183
cmdclass={'test': RunTests,
185184
'quicktest': QuickRunTests,
@@ -200,15 +199,11 @@ def extra_args(self):
200199
'Programming Language :: Python :: 2.6',
201200
'Programming Language :: Python :: 2.7',
202201
'Programming Language :: Python :: 3',
203-
'Programming Language :: Python :: 3.2',
204202
'Programming Language :: Python :: 3.3',
205203
'Programming Language :: Python :: Implementation :: CPython',
206204
'Programming Language :: Python :: Implementation :: PyPy',
207205
'Programming Language :: Python :: Implementation :: Jython',
208206
],
209-
entry_points={
210-
'console_scripts': ['djcelerymon = djcelery.mon:main'],
211-
},
212207
long_description=long_description,
213208
**extra
214209
)

0 commit comments

Comments
 (0)