]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
Add support for Django REST Framework 3.9
authorStephen Finucane <stephen@that.guru>
Thu, 18 Oct 2018 16:45:21 +0000 (17:45 +0100)
committerStephen Finucane <stephen@that.guru>
Thu, 18 Oct 2018 16:45:21 +0000 (17:45 +0100)
As with 3.7 and 3.8, there are no breaking changes we need to be
concerned with here.

Signed-off-by: Stephen Finucane <stephen@that.guru>
releasenotes/notes/django-rest-framework-3-9-0afb78322dd82367.yaml [new file with mode: 0644]
requirements-dev.txt
requirements-prod.txt
tox.ini

diff --git a/releasenotes/notes/django-rest-framework-3-9-0afb78322dd82367.yaml b/releasenotes/notes/django-rest-framework-3-9-0afb78322dd82367.yaml
new file mode 100644 (file)
index 0000000..e655318
--- /dev/null
@@ -0,0 +1,6 @@
+---
+upgrade:
+  - |
+    `Django REST Framework 3.9
+    <https://www.django-rest-framework.org/community/3.9-announcement/>`_ is now
+    supported.
index 994b9b682d5a0b2f8e433667a7eb8aeb6c84cf91..ae6a1b1df9278ab308bd42e1c812dd4f8a3a07af 100644 (file)
@@ -1,6 +1,6 @@
 Django==2.1.2; python_version >= '3.4'
 Django==1.11.15; python_version < '3.0'  # pyup: ignore
-djangorestframework==3.8.2
+djangorestframework==3.9.0
 django-filter==2.0.0; python_version >= '3.4'
 django-filter==1.1.0; python_version < '3.0'  # pyup: ignore
 django-debug-toolbar==1.10.1
index 5bf8a27330802854e9a32c45644123945372b30d..f3647d6b3811c31892287770beaee7709cfdc675 100644 (file)
@@ -1,6 +1,6 @@
 Django==2.1.2; python_version >= '3.4'
 Django==1.11.15; python_version < '3.0'  # pyup: ignore
-djangorestframework==3.8.2
+djangorestframework==3.9.0
 django-filter==2.0.0; python_version >= '3.4'
 django-filter==1.1.0; python_version < '3.0'  # pyup: ignore
 psycopg2-binary==2.7.5
diff --git a/tox.ini b/tox.ini
index df17df7e428afc7421d7344fe1fb2f786136b1e3..384d3c7c3c54ec7667673394905817b9475ade3d 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -7,12 +7,12 @@ skipsdist = True
 deps =
     -r{toxinidir}/requirements-test.txt
     django111: django>=1.11,<2.0
-    django111: djangorestframework>=3.6,<3.9
+    django111: djangorestframework>=3.6,<3.10
     django111: django-filter>=1.0,<3.0; python_version >= '3.4'
     django111: django-filter>=1.0,<2.0; python_version < '3.0'
     django20: django>=2.0,<2.1
     django21: django>=2.1,<2.2
-    django{20,21}: djangorestframework>=3.7,<3.9
+    django{20,21}: djangorestframework>=3.7,<3.10
     django{20,21}: django-filter>=2.0,<3.0
 setenv =
     DJANGO_SETTINGS_MODULE = patchwork.settings.dev