aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTom Christie2013-05-21 12:05:44 +0100
committerTom Christie2013-05-21 12:05:44 +0100
commitac99b814973c13d04362923cf71b96d4eec459cf (patch)
treed7b23ee165e67f59eb517148d38eb24ef53dedf9 /docs
parent39783a6e3c84904b9f59cbcead7798c417ae3c9f (diff)
downloaddjango-rest-framework-ac99b814973c13d04362923cf71b96d4eec459cf.tar.bz2
Note usage of django-filter 0.5.4 for Django 1.3 support. Closes #877
Diffstat (limited to 'docs')
-rw-r--r--docs/api-guide/filtering.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/api-guide/filtering.md b/docs/api-guide/filtering.md
index 8226aa42..dd4cf8d7 100644
--- a/docs/api-guide/filtering.md
+++ b/docs/api-guide/filtering.md
@@ -175,6 +175,7 @@ For more details on using filter sets see the [django-filter documentation][djan
* By default filtering is not enabled. If you want to use `DjangoFilterBackend` remember to make sure it is installed by using the `'DEFAULT_FILTER_BACKENDS'` setting.
* When using boolean fields, you should use the values `True` and `False` in the URL query parameters, rather than `0`, `1`, `true` or `false`. (The allowed boolean values are currently hardwired in Django's [NullBooleanSelect implementation][nullbooleanselect].)
* `django-filter` supports filtering across relationships, using Django's double-underscore syntax.
+* For Django 1.3 support, make sure to install `django-filter` version 0.5.4, as later versions drop support for 1.3.
---