Home > Software engineering >  Which version of Django rest framework for Django 2.1.5?
Which version of Django rest framework for Django 2.1.5?

Time:11-16

I am working with an old django version, and I can't identify which version of django rest framework I would need for a Django 2.1.5

I can't find this information in the official django-rest-framework documentation

Thanks

CodePudding user response:

You can use the version of 3.11.1, which it the latest drf version for Django 2.1.

Python (3.5, 3.6, 3.7, 3.8)
Django (1.11, 2.0, 2.1, 2.2, 3.0)

The documentation are replaced from the website. But you can use above links to check the documentation by using markdown based.

You can also easily check to the tags itself: https://github.com/encode/django-rest-framework/tags, to check the old versions.

CodePudding user response:

Requirements for rest framework

REST framework requires the following:

Python (3.6, 3.7, 3.8, 3.9, 3.10)

Django (2.2, 3.0, 3.1, 3.2, 4.0, 4.1)

source: https://www.django-rest-framework.org/#requirements

  • Related