From b15cf7f89fced7d270e19b9bfd175ec6bda4b04b Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 27 Apr 2017 21:49:19 +0900 Subject: [PATCH] Remove deprecated feature: drop RemovedInSphinx17Warning --- sphinx/deprecation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sphinx/deprecation.py b/sphinx/deprecation.py index 608b23c1b..bb63df330 100644 --- a/sphinx/deprecation.py +++ b/sphinx/deprecation.py @@ -10,11 +10,11 @@ """ -class RemovedInSphinx17Warning(DeprecationWarning): +class RemovedInSphinx18Warning(DeprecationWarning): pass -class RemovedInSphinx18Warning(PendingDeprecationWarning): +class RemovedInSphinx19Warning(PendingDeprecationWarning): pass @@ -22,4 +22,4 @@ class RemovedInSphinx20Warning(PendingDeprecationWarning): pass -RemovedInNextVersionWarning = RemovedInSphinx17Warning +RemovedInNextVersionWarning = RemovedInSphinx18Warning