I upgraded from Django 1.10.4 to 1.11.1 and all of a sudden I\'m getting a ton of these messages when I run my tests:
lib/python3.5/site-packages/rest_framework/
I was getting this warning when i used objects.all() in my view.py
profile_list = Profile.objects.all() paginator = Paginator(profile_list, 25)
to fix this i changed my code to :
profile_list = Profile.objects.get_queryset().order_by('id') paginator = Paginator(profile_list, 25)