]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
Add support for djangorestframework 3.11
authorStephen Finucane <stephen@that.guru>
Thu, 27 Feb 2020 23:46:55 +0000 (23:46 +0000)
committerStephen Finucane <stephen@that.guru>
Fri, 28 Feb 2020 17:21:54 +0000 (17:21 +0000)
There are no breaking changes apparent.

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

diff --git a/releasenotes/notes/django-rest-framework-3-11-b144d420b31250cd.yaml b/releasenotes/notes/django-rest-framework-3-11-b144d420b31250cd.yaml
new file mode 100644 (file)
index 0000000..3443ee1
--- /dev/null
@@ -0,0 +1,6 @@
+---
+upgrade:
+  - |
+    `Django REST Framework 3.11
+    <https://www.django-rest-framework.org/community/3.11-announcement/>`_ is
+    now supported.
index d4d1ddf9a3b720cec988989061591ddbb9599598..b165f3a4fd699b753de3488b4ac1c88dcda7e0f9 100644 (file)
@@ -1,6 +1,6 @@
 Django~=2.2.0; python_version >= '3.5'  # pyup: >= 2.2.0,<2.3.0
 Django~=1.11.0; python_version < '3.0'  # pyup: ignore
-djangorestframework~=3.10.0; python_version >= '3.5'
+djangorestframework~=3.11.0; python_version >= '3.5'
 djangorestframework~=3.9.0; python_version < '3.0'  # pyup: ignore
 django-filter~=2.2.0; python_version >= '3.5'  # pyup: >=2.2.0,<2.3.0
 django-filter~=1.1.0; python_version < '3.0'  # pyup: ignore
index ff583b4b4e91caa4e8290e565c306a8c514b5e3e..4093b3aac6ed243227519fa927f431c6f9d57932 100644 (file)
@@ -1,6 +1,6 @@
 Django~=2.2.0; python_version >= '3.5'  # pyup: >=2.2.0,<2.3.0
 Django~=1.11.0; python_version < '3.0'  # pyup: ignore
-djangorestframework~=3.10.0; python_version >= '3.5'  # pyup: >=3.10.0,<3.11.0
+djangorestframework~=3.11.0; python_version >= '3.5'  # pyup: >=3.10.0,<3.12.0
 djangorestframework~=3.9.0; python_version < '3.0'  # pyup: ignore
 django-filter~=2.2.0; python_version >= '3.5'  # pyup: >=2.2.0,<2.3.0
 django-filter~=1.1.0; python_version < '3.0'  # pyup: ignore
diff --git a/tox.ini b/tox.ini
index 1b6cadaad1754bd7eba0a81090a82856471069da..e46fe5f89d93b000987476818a2a7a52282612c3 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -9,16 +9,16 @@ basepython = python3
 deps =
     -r{toxinidir}/requirements-test.txt
     django111: django>=1.11,<2.0
-    django111: djangorestframework>=3.6,<3.11; python_version >= '3.5'
+    django111: djangorestframework>=3.6,<3.12; python_version >= '3.5'
     django111: djangorestframework>=3.6,<3.10; python_version < '3.0'
     django111: django-filter>=1.0,<3.0; python_version >= '3.5'
     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.11
+    django{20,21}: djangorestframework>=3.7,<3.12
     django{20,21}: django-filter>=2.0,<3.0
     django22: django>=2.2,<2.3
-    django22: djangorestframework>=3.10,<3.11
+    django22: djangorestframework>=3.10,<3.12
     django22: django-filter>=2.1,<3.0
 setenv =
     DJANGO_SETTINGS_MODULE = patchwork.settings.dev