Hi Giancarlo,
I did upgrade to celery and also django-celery but i am getting this :
Traceback (most recent call last):
File "manage.py", line 9, in <module>
execute_from_command_line(sys.argv)
File
"/home/jay/biostar-central/lib/python2.7/site-packages/django/core/management/__init__.py",
line 399, in execute_from_command_line
utility.execute()
File
"/home/jay/biostar-central/lib/python2.7/site-packages/django/core/management/__init__.py",
line 392, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File
"/home/jay/biostar-central/lib/python2.7/site-packages/django/core/management/base.py",
line 242, in run_from_argv
self.execute(*args, **options.__dict__)
File
"/home/jay/biostar-central/lib/python2.7/site-packages/django/core/management/base.py",
line 285, in execute
output = self.handle(*args, **options)
File
"/home/jay/biostar-central/lib/python2.7/site-packages/django/core/management/base.py",
line 415, in handle
return self.handle_noargs(**options)
File
"/home/jay/biostar-central/lib/python2.7/site-packages/south/management/commands/syncdb.py",
line 68, in handle_noargs
migrations = migration.Migrations(app_label)
File
"/home/jay/biostar-central/lib/python2.7/site-packages/south/migration/base.py",
line 64, in __call__
self.instances[app_label] = super(MigrationsMetaclass,
self).__call__(app_label_to_app_module(app_label), **kwds)
File
"/home/jay/biostar-central/lib/python2.7/site-packages/south/migration/base.py",
line 90, in __init__
self.set_application(application, force_creation, verbose_creation)
File
"/home/jay/biostar-central/lib/python2.7/site-packages/south/migration/base.py",
line 154, in set_application
module = importlib.import_module(self.migrations_module())
File
"/home/jay/biostar-central/lib/python2.7/site-packages/django/utils/importlib.py",
line 40, in import_module
__import__(name)
File
"/home/jay/biostar-central/lib/python2.7/site-packages/djcelery/migrations/__init__.py",
line 16, in <module>
raise ImproperlyConfigured(SOUTH_ERROR_MESSAGE)
django.core.exceptions.ImproperlyConfigured:
For South support, customize the SOUTH_MIGRATION_MODULES setting
to point to the correct migrations module:
SOUTH_MIGRATION_MODULES = {
'djcelery': 'djcelery.south_migrations',
}
On Mon, Apr 25, 2016 at 6:35 PM, Giancarlo Razzolini <[email protected]>
wrote:
> Em abril 25, 2016 4:12 Jay Patel escreveu:
>
>> Hi Muhammad,
>>
>> I reinstalled everything but still same error.
>>
>> Is it platform error or python one?
>>
>> Thanks,
>> Jay
>>
>>
> Jay,
>
> This is an issue with kombu. You need to update your celery
> installation. pip install -U celery should fix that. This happens because
> kombu is using an internal python function that got removed from 2.7.9 to
> 2.7.10, if I recall it correctly. I had this same issue recently.
>
> Cheers,
> Giancarlo Razzolini