Update DRF version support

This commit is contained in:
Ryan P Kilby 2016-11-08 11:14:24 -05:00
parent 046b31b391
commit 2b9cc1bde5
2 changed files with 22 additions and 6 deletions

View File

@ -12,9 +12,9 @@ Full documentation on `read the docs`_.
Requirements
------------
* Python 2.7, 3.3, 3.4, 3.5
* Django 1.8, 1.9, 1.10
* DRF 3.3 (Django 1.8 only), 3.4
* **Python**: 2.7, 3.3, 3.4, 3.5
* **Django**: 1.8, 1.9, 1.10
* **DRF**: 3.4, 3.5
Installation
------------

View File

@ -2,16 +2,32 @@
Installation
============
Install with pip:
Django-filter can be installed from PyPI with tools like ``pip``:
.. code-block:: bash
pip install django-filter
$ pip install django-filter
And then add ``'django_filters'`` to your ``INSTALLED_APPS``.
Then add ``'django_filters'`` to your ``INSTALLED_APPS``.
.. note::
django-filter provides *some* localization for *some* languages. If you do
not need these translations (or would rather provide your own), then it is
unnecessary to add django-filter to the ``INSTALLED_APPS`` setting.
Requirements
------------
Django-filter is tested against all supported versions of Python and `Django`__,
as well as the latest versions of Django REST Framework (`DRF`__).
__ https://www.djangoproject.com/download/
__ http://www.django-rest-framework.org/
* **Python**: 2.7, 3.3, 3.4, 3.5
* **Django**: 1.8, 1.9, 1.10
* **DRF**: 3.4, 3.5