Django 1.7 makemigration Hang
I'm trying to get to Django 1.7 and follow the instructions here . Unfortunately the process seems to hang with the output below:
[Watt] ~/Projects/proj/proj master > python proj/manage.py makemigrations
/home/me/.virtualenvs/myvenv/local/lib/python2.7/site-packages/django/contrib/comments/__init__.py:13: RemovedInDjango18Warning: django.contrib.comments is deprecated and will be removed before Django 1.8.
warnings.warn("django.contrib.comments is deprecated and will be removed before Django 1.8.", RemovedInDjango18Warning)
/home/me/.virtualenvs/myvenv/local/lib/python2.7/site-packages/mptt/managers.py:36: RemovedInDjango18Warning: `TreeManager.get_query_set` method should be renamed `get_queryset`.
class TreeManager(models.Manager):
/home/me/.virtualenvs/myvenv/local/lib/python2.7/site-packages/tagging/forms.py:12: RemovedInDjango18Warning: Creating a ModelForm without either the 'fields' attribute or the 'exclude' attribute is deprecated - form TagAdminForm needs updating
class TagAdminForm(forms.ModelForm):
/home/me/.virtualenvs/myvenv/local/lib/python2.7/site-packages/mptt/admin.py:15: RemovedInDjango18Warning: `MPTTChangeList.get_query_set` method should be renamed `get_queryset`.
class MPTTChangeList(ChangeList):
What can I do to diagnose a freeze? Could this be a feature of some of the deprecated dependencies for 1.7?
+3
source to share
2 answers
As mentioned in this answer , you should try migrating one by one for the core Django packages, then your own apps, and finally for third party dependencies. I also updated them to the latest stable versions - maybe that helped.
+1
source to share