From d6c24441d5fb12ac983e8122bd450b1dc6316e21 Mon Sep 17 00:00:00 2001 From: Ryan P Kilby Date: Mon, 20 May 2019 20:13:18 -0700 Subject: [PATCH] Bump deprecation warning versions --- rest_framework/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index 53dc7bd47..cead7568d 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -25,9 +25,9 @@ ISO_8601 = 'iso-8601' default_app_config = 'rest_framework.apps.RestFrameworkConfig' -class RemovedInDRF310Warning(DeprecationWarning): +class RemovedInDRF311Warning(DeprecationWarning): pass -class RemovedInDRF311Warning(PendingDeprecationWarning): +class RemovedInDRF312Warning(PendingDeprecationWarning): pass