Hello community,
here is the log from the commit of package python-django-celery for
openSUSE:Factory checked in at 2012-05-08 06:47:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-celery (Old)
and /work/SRC/openSUSE:Factory/.python-django-celery.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-django-celery", Maintainer is ""
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-django-celery/python-django-celery.changes
2012-04-20 15:19:33.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.python-django-celery.new/python-django-celery.changes
2012-05-08 06:47:51.000000000 +0200
@@ -1,0 +2,6 @@
+Thu Apr 19 15:23:00 UTC 2012 - [email protected]
+
+- Update to 2.5.5:
+ * Fixed bug where task modules were not imported.
+
+-------------------------------------------------------------------
Old:
----
django-celery-2.5.4.tar.bz2
New:
----
django-celery-2.5.5.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-django-celery.spec ++++++
--- /var/tmp/diff_new_pack.NAroTi/_old 2012-05-08 06:47:52.000000000 +0200
+++ /var/tmp/diff_new_pack.NAroTi/_new 2012-05-08 06:47:52.000000000 +0200
@@ -20,7 +20,7 @@
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from
distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Name: python-django-celery
-Version: 2.5.4
+Version: 2.5.5
Release: 0
Url: http://celeryproject.org
Summary: Django Celery Integration
++++++ django-celery-2.5.4.tar.bz2 -> django-celery-2.5.5.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-celery-2.5.4/Changelog
new/django-celery-2.5.5/Changelog
--- old/django-celery-2.5.4/Changelog 2012-04-16 19:32:18.000000000 +0200
+++ new/django-celery-2.5.5/Changelog 2012-04-19 14:46:38.000000000 +0200
@@ -5,6 +5,14 @@
.. contents::
:local:
+.. _version-2.5.5:
+
+2.5.5
+=====
+:release-date: 2012-04-19 01:46 P.M BST
+
+* Fixed bug where task modules were not imported.
+
.. _version-2.5.4:
2.5.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-celery-2.5.4/PKG-INFO
new/django-celery-2.5.5/PKG-INFO
--- old/django-celery-2.5.4/PKG-INFO 2012-04-16 19:58:08.000000000 +0200
+++ new/django-celery-2.5.5/PKG-INFO 2012-04-19 14:47:46.000000000 +0200
@@ -1,23 +1,23 @@
Metadata-Version: 1.0
Name: django-celery
-Version: 2.5.4
+Version: 2.5.5
Summary: Django Celery Integration.
Home-page: http://celeryproject.org
Author: Ask Solem
Author-email: [email protected]
License: BSD
Description: ===============================================
- django-celery - Celery Integration for Django
+ django-celery - Celery Integration for Django
===============================================
.. image:: http://cloud.github.com/downloads/ask/celery/celery_128.png
- :Version: 2.5.4
+ :Version: 2.5.5
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/django-celery/
:Source: http://github.com/ask/django-celery/
:Keywords: celery, task queue, job queue, asynchronous, rabbitmq,
amqp, redis,
- python, django, webhooks, queue, distributed
+ python, django, webhooks, queue, distributed
--
@@ -26,7 +26,7 @@
for applications listed in ``INSTALLED_APPS``, and more.
.. contents::
- :local:
+ :local:
Using django-celery
===================
@@ -34,12 +34,12 @@
To enable ``django-celery`` for your project you need to add
``djcelery`` to
``INSTALLED_APPS``::
- INSTALLED_APPS += ("djcelery", )
+ INSTALLED_APPS += ("djcelery", )
then add the following lines to your ``settings.py``::
- import djcelery
- djcelery.setup_loader()
+ import djcelery
+ djcelery.setup_loader()
Everything works the same as described in the `Celery User Manual`_,
except you
need to invoke the programs through ``manage.py``:
@@ -68,8 +68,8 @@
If you're using ``mod_wsgi`` to deploy your Django application you
need to
include the following in your ``.wsgi`` module::
- import djcelery
- djcelery.setup_loader()
+ import djcelery
+ djcelery.setup_loader()
Documentation
=============
@@ -81,7 +81,7 @@
.. _`django-celery documentation`:
http://django-celery.readthedocs.org/
.. _`Celery User Manual`: http://docs.celeryproject.org/
.. _`Getting started with django-celery`:
-
http://django-celery.readthedocs.org/en/latest/getting-started/first-steps-with-django.html
+
http://django-celery.readthedocs.org/en/latest/getting-started/first-steps-with-django.html
Installation
=============
@@ -91,20 +91,20 @@
To install using ``pip``,::
- $ pip install django-celery
+ $ pip install django-celery
To install using ``easy_install``,::
- $ easy_install django-celery
+ $ easy_install django-celery
You will then want to create the necessary tables. If you are using
south_
for schema migrations, you'll want to::
- $ python manage.py migrate djcelery
+ $ python manage.py migrate djcelery
For those who are not using south, a normal ``syncdb`` will work::
- $ python manage.py syncdb
+ $ python manage.py syncdb
.. _south: http://pypi.python.org/pypi/South/
@@ -116,16 +116,16 @@
You can install it by doing the following,::
- $ tar xvfz django-celery-0.0.0.tar.gz
- $ cd django-celery-0.0.0
- # python setup.py install # as root
+ $ tar xvfz django-celery-0.0.0.tar.gz
+ $ cd django-celery-0.0.0
+ # python setup.py install # as root
Using the development version
------------------------------
You can clone the git repository by doing the following::
- $ git clone git://github.com/ask/django-celery.git
+ $ git clone git://github.com/ask/django-celery.git
Getting Help
============
@@ -134,7 +134,7 @@
------------
For discussions about the usage, development, and future of celery,
- please join the `celery-users`_ mailing list.
+ please join the `celery-users`_ mailing list.
.. _`celery-users`: http://groups.google.com/group/celery-users/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-celery-2.5.4/README
new/django-celery-2.5.5/README
--- old/django-celery-2.5.4/README 2012-04-16 19:33:20.000000000 +0200
+++ new/django-celery-2.5.5/README 2012-04-19 14:47:26.000000000 +0200
@@ -4,7 +4,7 @@
.. image:: http://cloud.github.com/downloads/ask/celery/celery_128.png
-:Version: 2.5.4
+:Version: 2.5.5
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/django-celery/
:Source: http://github.com/ask/django-celery/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-celery-2.5.4/README.rst
new/django-celery-2.5.5/README.rst
--- old/django-celery-2.5.4/README.rst 2012-04-16 19:33:20.000000000 +0200
+++ new/django-celery-2.5.5/README.rst 2012-04-19 14:47:26.000000000 +0200
@@ -4,7 +4,7 @@
.. image:: http://cloud.github.com/downloads/ask/celery/celery_128.png
-:Version: 2.5.4
+:Version: 2.5.5
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/django-celery/
:Source: http://github.com/ask/django-celery/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-celery-2.5.4/django_celery.egg-info/PKG-INFO
new/django-celery-2.5.5/django_celery.egg-info/PKG-INFO
--- old/django-celery-2.5.4/django_celery.egg-info/PKG-INFO 2012-04-16
19:58:05.000000000 +0200
+++ new/django-celery-2.5.5/django_celery.egg-info/PKG-INFO 2012-04-19
14:47:44.000000000 +0200
@@ -1,23 +1,23 @@
Metadata-Version: 1.0
Name: django-celery
-Version: 2.5.4
+Version: 2.5.5
Summary: Django Celery Integration.
Home-page: http://celeryproject.org
Author: Ask Solem
Author-email: [email protected]
License: BSD
Description: ===============================================
- django-celery - Celery Integration for Django
+ django-celery - Celery Integration for Django
===============================================
.. image:: http://cloud.github.com/downloads/ask/celery/celery_128.png
- :Version: 2.5.4
+ :Version: 2.5.5
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/django-celery/
:Source: http://github.com/ask/django-celery/
:Keywords: celery, task queue, job queue, asynchronous, rabbitmq,
amqp, redis,
- python, django, webhooks, queue, distributed
+ python, django, webhooks, queue, distributed
--
@@ -26,7 +26,7 @@
for applications listed in ``INSTALLED_APPS``, and more.
.. contents::
- :local:
+ :local:
Using django-celery
===================
@@ -34,12 +34,12 @@
To enable ``django-celery`` for your project you need to add
``djcelery`` to
``INSTALLED_APPS``::
- INSTALLED_APPS += ("djcelery", )
+ INSTALLED_APPS += ("djcelery", )
then add the following lines to your ``settings.py``::
- import djcelery
- djcelery.setup_loader()
+ import djcelery
+ djcelery.setup_loader()
Everything works the same as described in the `Celery User Manual`_,
except you
need to invoke the programs through ``manage.py``:
@@ -68,8 +68,8 @@
If you're using ``mod_wsgi`` to deploy your Django application you
need to
include the following in your ``.wsgi`` module::
- import djcelery
- djcelery.setup_loader()
+ import djcelery
+ djcelery.setup_loader()
Documentation
=============
@@ -81,7 +81,7 @@
.. _`django-celery documentation`:
http://django-celery.readthedocs.org/
.. _`Celery User Manual`: http://docs.celeryproject.org/
.. _`Getting started with django-celery`:
-
http://django-celery.readthedocs.org/en/latest/getting-started/first-steps-with-django.html
+
http://django-celery.readthedocs.org/en/latest/getting-started/first-steps-with-django.html
Installation
=============
@@ -91,20 +91,20 @@
To install using ``pip``,::
- $ pip install django-celery
+ $ pip install django-celery
To install using ``easy_install``,::
- $ easy_install django-celery
+ $ easy_install django-celery
You will then want to create the necessary tables. If you are using
south_
for schema migrations, you'll want to::
- $ python manage.py migrate djcelery
+ $ python manage.py migrate djcelery
For those who are not using south, a normal ``syncdb`` will work::
- $ python manage.py syncdb
+ $ python manage.py syncdb
.. _south: http://pypi.python.org/pypi/South/
@@ -116,16 +116,16 @@
You can install it by doing the following,::
- $ tar xvfz django-celery-0.0.0.tar.gz
- $ cd django-celery-0.0.0
- # python setup.py install # as root
+ $ tar xvfz django-celery-0.0.0.tar.gz
+ $ cd django-celery-0.0.0
+ # python setup.py install # as root
Using the development version
------------------------------
You can clone the git repository by doing the following::
- $ git clone git://github.com/ask/django-celery.git
+ $ git clone git://github.com/ask/django-celery.git
Getting Help
============
@@ -134,7 +134,7 @@
------------
For discussions about the usage, development, and future of celery,
- please join the `celery-users`_ mailing list.
+ please join the `celery-users`_ mailing list.
.. _`celery-users`: http://groups.google.com/group/celery-users/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-celery-2.5.4/djcelery/__init__.py
new/django-celery-2.5.5/djcelery/__init__.py
--- old/django-celery-2.5.4/djcelery/__init__.py 2012-04-16
19:57:52.000000000 +0200
+++ new/django-celery-2.5.5/djcelery/__init__.py 2012-04-19
14:47:19.000000000 +0200
@@ -5,7 +5,7 @@
import os
-VERSION = (2, 5, 4)
+VERSION = (2, 5, 5)
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Ask Solem"
__contact__ = "[email protected]"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-celery-2.5.4/djcelery/loaders.py
new/django-celery-2.5.5/djcelery/loaders.py
--- old/django-celery-2.5.4/djcelery/loaders.py 2012-04-16 19:30:57.000000000
+0200
+++ new/django-celery-2.5.5/djcelery/loaders.py 2012-04-19 14:46:59.000000000
+0200
@@ -107,6 +107,7 @@
if settings.DEBUG:
warnings.warn("Using settings.DEBUG leads to a memory leak, never "
"use this setting in production environments!")
+ self.import_default_modules()
self.close_database()
self.close_cache()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-celery-2.5.4/docs/changelog.rst
new/django-celery-2.5.5/docs/changelog.rst
--- old/django-celery-2.5.4/docs/changelog.rst 2012-04-16 19:32:18.000000000
+0200
+++ new/django-celery-2.5.5/docs/changelog.rst 2012-04-19 14:46:38.000000000
+0200
@@ -5,6 +5,14 @@
.. contents::
:local:
+.. _version-2.5.5:
+
+2.5.5
+=====
+:release-date: 2012-04-19 01:46 P.M BST
+
+* Fixed bug where task modules were not imported.
+
.. _version-2.5.4:
2.5.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-celery-2.5.4/docs/introduction.rst
new/django-celery-2.5.5/docs/introduction.rst
--- old/django-celery-2.5.4/docs/introduction.rst 2012-04-16
19:33:14.000000000 +0200
+++ new/django-celery-2.5.5/docs/introduction.rst 2012-04-19
14:47:24.000000000 +0200
@@ -4,7 +4,7 @@
.. image:: http://cloud.github.com/downloads/ask/celery/celery_128.png
-:Version: 2.5.4
+:Version: 2.5.5
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/django-celery/
:Source: http://github.com/ask/django-celery/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-celery-2.5.4/setup.cfg
new/django-celery-2.5.5/setup.cfg
--- old/django-celery-2.5.4/setup.cfg 2012-04-16 19:58:08.000000000 +0200
+++ new/django-celery-2.5.5/setup.cfg 2012-04-19 14:47:46.000000000 +0200
@@ -1,12 +1,7 @@
[build_sphinx]
-all_files = 1
-build-dir = docs/.build
source-dir = docs/
-
-[egg_info]
-tag_build =
-tag_date = 0
-tag_svn_revision = 0
+build-dir = docs/.build
+all_files = 1
[upload_sphinx]
upload-dir = docs/.build/html
@@ -15,3 +10,8 @@
requires = django-picklefield >= 0.2.0
celery >= 2.5.2
+[egg_info]
+tag_build =
+tag_date = 0
+tag_svn_revision = 0
+
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]