mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-09 08:00:52 +03:00
Docs, tox and travis use django-filter 0.5.4
This commit is contained in:
parent
c5765641a4
commit
2f2bde69e4
|
@ -11,8 +11,7 @@ env:
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pip install $DJANGO
|
- pip install $DJANGO
|
||||||
- pip install -r requirements.txt --use-mirrors
|
- pip install django-filter==0.5.4 --use-mirrors
|
||||||
- pip install -e git+https://github.com/alex/django-filter.git@0e4b3d703b31574922ab86fc78a86164aad0c1d0#egg=django-filter
|
|
||||||
- export PYTHONPATH=.
|
- export PYTHONPATH=.
|
||||||
|
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -84,9 +84,9 @@ As well as being able to override the default queryset, REST framework also incl
|
||||||
|
|
||||||
REST framework supports pluggable backends to implement filtering, and provides an implementation which uses the [django-filter] package.
|
REST framework supports pluggable backends to implement filtering, and provides an implementation which uses the [django-filter] package.
|
||||||
|
|
||||||
To use REST framework's default filtering backend, first install `django-filter`.
|
To use REST framework's filtering backend, first install `django-filter`.
|
||||||
|
|
||||||
pip install -e git+https://github.com/alex/django-filter.git#egg=django-filter
|
pip install django-filter
|
||||||
|
|
||||||
You must also set the filter backend to `DjangoFilterBackend` in your settings:
|
You must also set the filter backend to `DjangoFilterBackend` in your settings:
|
||||||
|
|
||||||
|
@ -94,7 +94,6 @@ You must also set the filter backend to `DjangoFilterBackend` in your settings:
|
||||||
'FILTER_BACKEND': 'rest_framework.filters.DjangoFilterBackend'
|
'FILTER_BACKEND': 'rest_framework.filters.DjangoFilterBackend'
|
||||||
}
|
}
|
||||||
|
|
||||||
**Note**: The currently supported version of `django-filter` is the `master` branch. A PyPI release is expected to be coming soon.
|
|
||||||
|
|
||||||
## Specifying filter fields
|
## Specifying filter fields
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ The following packages are optional:
|
||||||
|
|
||||||
* [Markdown][markdown] (2.1.0+) - Markdown support for the browseable API.
|
* [Markdown][markdown] (2.1.0+) - Markdown support for the browseable API.
|
||||||
* [PyYAML][yaml] (3.10+) - YAML content-type support.
|
* [PyYAML][yaml] (3.10+) - YAML content-type support.
|
||||||
* [django-filter][django-filter] (master) - Filtering support.
|
* [django-filter][django-filter] (0.5.4+) - Filtering support.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ Install using `pip`, including any optional packages you want...
|
||||||
pip install djangorestframework
|
pip install djangorestframework
|
||||||
pip install markdown # Markdown support for the browseable API.
|
pip install markdown # Markdown support for the browseable API.
|
||||||
pip install pyyaml # YAML content-type support.
|
pip install pyyaml # YAML content-type support.
|
||||||
pip install -e git+https://github.com/alex/django-filter.git#egg=django-filter # Filtering support
|
pip install django-filter # Filtering support
|
||||||
|
|
||||||
...or clone the project from github.
|
...or clone the project from github.
|
||||||
|
|
||||||
|
|
12
tox.ini
12
tox.ini
|
@ -8,29 +8,29 @@ commands = {envpython} rest_framework/runtests/runtests.py
|
||||||
[testenv:py2.7-django1.5]
|
[testenv:py2.7-django1.5]
|
||||||
basepython = python2.7
|
basepython = python2.7
|
||||||
deps = https://github.com/django/django/zipball/master
|
deps = https://github.com/django/django/zipball/master
|
||||||
git+https://github.com/alex/django-filter.git@0e4b3d703b31574922ab86fc78a86164aad0c1d0#egg=django-filter
|
django-filter==0.5.4
|
||||||
|
|
||||||
[testenv:py2.7-django1.4]
|
[testenv:py2.7-django1.4]
|
||||||
basepython = python2.7
|
basepython = python2.7
|
||||||
deps = django==1.4.1
|
deps = django==1.4.1
|
||||||
git+https://github.com/alex/django-filter.git@0e4b3d703b31574922ab86fc78a86164aad0c1d0#egg=django-filter
|
django-filter==0.5.4
|
||||||
|
|
||||||
[testenv:py2.7-django1.3]
|
[testenv:py2.7-django1.3]
|
||||||
basepython = python2.7
|
basepython = python2.7
|
||||||
deps = django==1.3.3
|
deps = django==1.3.3
|
||||||
git+https://github.com/alex/django-filter.git@0e4b3d703b31574922ab86fc78a86164aad0c1d0#egg=django-filter
|
django-filter==0.5.4
|
||||||
|
|
||||||
[testenv:py2.6-django1.5]
|
[testenv:py2.6-django1.5]
|
||||||
basepython = python2.6
|
basepython = python2.6
|
||||||
deps = https://github.com/django/django/zipball/master
|
deps = https://github.com/django/django/zipball/master
|
||||||
git+https://github.com/alex/django-filter.git@0e4b3d703b31574922ab86fc78a86164aad0c1d0#egg=django-filter
|
django-filter==0.5.4
|
||||||
|
|
||||||
[testenv:py2.6-django1.4]
|
[testenv:py2.6-django1.4]
|
||||||
basepython = python2.6
|
basepython = python2.6
|
||||||
deps = django==1.4.1
|
deps = django==1.4.1
|
||||||
git+https://github.com/alex/django-filter.git@0e4b3d703b31574922ab86fc78a86164aad0c1d0#egg=django-filter
|
django-filter==0.5.4
|
||||||
|
|
||||||
[testenv:py2.6-django1.3]
|
[testenv:py2.6-django1.3]
|
||||||
basepython = python2.6
|
basepython = python2.6
|
||||||
deps = django==1.3.3
|
deps = django==1.3.3
|
||||||
git+https://github.com/alex/django-filter.git@0e4b3d703b31574922ab86fc78a86164aad0c1d0#egg=django-filter
|
django-filter==0.5.4
|
||||||
|
|
Loading…
Reference in New Issue
Block a user