Re: Version 3.7.4 Released

2019-03-25 Thread Paul Whipp
I am also getting this error upgrading from djangorestframework 3.7.3 to 3.9.2. It occurs where a view function decorated with api_view invokes another view function decorated with api_view. The reason is that the drf is attempting to convert an already converted request. Here are the original

Re: Version 3.7.4 Released

2018-01-09 Thread Christian Ledermann
I get the same error upgrading from djangorestframework==3.6.3 to djangorestframework==3.7.7 from rest_framework import viewsets class APIBaseViewSet(viewsets.ViewSet): test snippet: self.request = request_factory.get('/') view = APIBaseViewSet.as_view({'get':

Re: Version 3.7.4 Released

2017-12-27 Thread Escher
3.7.4 is breaking my generics.ListAPIView views compared to 3.7.3: I'm getting the AssertionError (here ) on my ListAPIView classes. They generally look like this: class FooList(generics.ListAPIView):

Version 3.7.4 Released

2017-12-20 Thread Carlton Gibson
Hi All v3.7.4 is now available on PyPI. https://pypi.python.org/pypi/djangorestframework/3.7.4 https://github.com/encode/django-rest-framework/releases/tag/3.7.4 Enjoy. Kind Regards, Carlton -- You received this message because you are subscribed to the Google Groups "Django REST