From bd21a06f3eac36bc34f7c5fe617ab6bacf95bbf5 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 27 Feb 2020 23:46:55 +0000 Subject: [PATCH] Add support for djangorestframework 3.11 There are no breaking changes apparent. Signed-off-by: Stephen Finucane --- .../notes/django-rest-framework-3-11-b144d420b31250cd.yaml | 6 ++++++ requirements-dev.txt | 2 +- requirements-prod.txt | 2 +- tox.ini | 6 +++--- 4 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 releasenotes/notes/django-rest-framework-3-11-b144d420b31250cd.yaml 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 index 00000000..3443ee18 --- /dev/null +++ b/releasenotes/notes/django-rest-framework-3-11-b144d420b31250cd.yaml @@ -0,0 +1,6 @@ +--- +upgrade: + - | + `Django REST Framework 3.11 + `_ is + now supported. diff --git a/requirements-dev.txt b/requirements-dev.txt index d4d1ddf9..b165f3a4 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -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 diff --git a/requirements-prod.txt b/requirements-prod.txt index ff583b4b..4093b3aa 100644 --- a/requirements-prod.txt +++ b/requirements-prod.txt @@ -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 1b6cadaa..e46fe5f8 100644 --- 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 -- 2.47.3