Warnings in Django 1.7

Issue #55 resolved
Former user created an issue

I see that version 3.2 was just released - excellent! But I'm still seeing the following warnings with Django 1.7:

$ ./manage.py check

/Users/shacker/Sites/virtualenvs/ccademo3/lib/python3.4/site-packages/django_postman-3.2.0-py3.4.egg/postman/models.py:513: RemovedInDjango18Warning: PendingMessageManager.get_query_set method should be renamed get_queryset.

/Users/shacker/Sites/virtualenvs/ccademo3/lib/python3.4/site-packages/django_postman-3.2.0-py3.4.egg/postman/admin.py:11: RemovedInDjango18Warning: Creating a ModelForm without either the 'fields' attribute or the 'exclude' attribute is deprecated - form MessageAdminForm needs updating

/Users/shacker/Sites/virtualenvs/ccademo3/lib/python3.4/site-packages/django/forms/widgets.py:143: RemovedInDjango18Warning: MessageAdmin.queryset method should be renamed get_queryset. .new(mcs, name, bases, attrs))

/Users/shacker/Sites/virtualenvs/ccademo3/lib/python3.4/site-packages/django_postman-3.2.0-py3.4.egg/postman/admin.py:140: RemovedInDjango18Warning: Creating a ModelForm without either the 'fields' attribute or the 'exclude' attribute is deprecated - form PendingMessageAdminForm needs updating

Comments (5)

  1. Patrick Samson repo owner
    • changed status to open

    Known. These are only warnings for the future 1.8 version. 1.7 can run fine with them.

  2. Log in to comment