From: Stephen Finucane Date: Sun, 24 Jun 2018 19:55:48 +0000 (+0100) Subject: Add support for Django REST Framework 3.7, 3.8 X-Git-Tag: v2.1.2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b99531224fcbadcdb9fea85179d1a7ea1dad4462;p=thirdparty%2Fpatchwork.git Add support for Django REST Framework 3.7, 3.8 No breaking changes that concern us here. Signed-off-by: Stephen Finucane Reviewed-by: Daniel Axtens Signed-off-by: Daniel Axtens (backported from commit a27f36fb784867e434527b8e65064ae3bdb12c82 to not include changes to requirements-*.txt, just release note and tox.ini changes.) Signed-off-by: Daniel Axtens --- diff --git a/README.rst b/README.rst index 4a970ec5..ddc4b981 100644 --- a/README.rst +++ b/README.rst @@ -45,7 +45,7 @@ Requirements - Django (1.8 - 1.11) -- Django REST Framework (3.2 - 3.6) +- Django REST Framework (3.4 - 3.8) - Django Filters (1.0) diff --git a/releasenotes/notes/django-rest-framework-3-7-bc6ad5df8bc54afc.yaml b/releasenotes/notes/django-rest-framework-3-7-bc6ad5df8bc54afc.yaml new file mode 100644 index 00000000..4bf92c99 --- /dev/null +++ b/releasenotes/notes/django-rest-framework-3-7-bc6ad5df8bc54afc.yaml @@ -0,0 +1,6 @@ +--- +upgrade: + - | + `Django REST Framework 3.7 + `_ is now + supported. diff --git a/releasenotes/notes/django-rest-framework-3-8-23865db833b4d188.yaml b/releasenotes/notes/django-rest-framework-3-8-23865db833b4d188.yaml new file mode 100644 index 00000000..dc2d2c8f --- /dev/null +++ b/releasenotes/notes/django-rest-framework-3-8-23865db833b4d188.yaml @@ -0,0 +1,6 @@ +--- +upgrade: + - | + `Django REST Framework 3.8 + `_ is now + supported. diff --git a/tox.ini b/tox.ini index 327b9e7c..5c741d37 100644 --- a/tox.ini +++ b/tox.ini @@ -10,8 +10,9 @@ deps = django19: django>=1.9,<1.10 django110: django>=1.10,<1.11 django111: django>=1.11,<2.0 - django{18,19,110}: djangorestframework>=3.4,<3.7 - django111: djangorestframework>=3.6,<3.7 + django{18,19}: djangorestframework>=3.4,<3.7 + django110: djangorestframework>=3.4,<3.9 + django111: djangorestframework>=3.6,<3.9 django{18,19,110,111}: django-filter>=1.0,<1.1 setenv = DJANGO_SETTINGS_MODULE = patchwork.settings.dev