summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst11
-rw-r--r--patchwork/settings/dev.py3
-rw-r--r--tox.ini4
3 files changed, 16 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 79c8370..3651573 100644
--- a/README.rst
+++ b/README.rst
@@ -38,6 +38,17 @@ subsystems of the Linux kernel. Although Patchwork has been developed with the
kernel workflow in mind, the aim is to be flexible enough to suit the majority
of community projects.
+Requirements
+------------
+
+- Python (2.7, 3.3 - 3.5)
+
+- Django (1.6 - 1.10)
+
+- Django REST Framework (3.2 - 3.6)
+
+- Django Filters (0.11 - 1.0)
+
Development Installation
------------------------
diff --git a/patchwork/settings/dev.py b/patchwork/settings/dev.py
index ee5b203..86b0f1b 100644
--- a/patchwork/settings/dev.py
+++ b/patchwork/settings/dev.py
@@ -92,5 +92,4 @@ if django.VERSION >= (1, 8):
ENABLE_XMLRPC = True
-if django.VERSION >= (1, 8):
- ENABLE_REST_API = True
+ENABLE_REST_API = True
diff --git a/tox.ini b/tox.ini
index f1b892c..3da222c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -7,7 +7,11 @@ skipsdist = True
deps =
-r{toxinidir}/requirements-test.txt
django16: django>=1.6,<1.7
+ django16: djangorestframework>=3.2,<3.3
+ django16: django-filter>=0.11,<0.12
django17: django>=1.7,<1.8
+ django17: djangorestframework>=3.3,<3.4
+ django17: django-filter>=0.11,<0.12
django18: django>=1.8,<1.9
django19: django>=1.9,<1.10
django110: django>=1.10,<1.11