Skip to content

Commit

Permalink
Merge pull request #6259 from tk0miya/deprecation
Browse files Browse the repository at this point in the history
Add RemovedInSphinx50Warning
  • Loading branch information
tk0miya committed Apr 6, 2019
2 parents 86d4823 + 7285588 commit d501bc1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sphinx/deprecation.py
Expand Up @@ -17,7 +17,11 @@
from typing import Any, Dict, Type # NOQA


class RemovedInSphinx40Warning(PendingDeprecationWarning):
class RemovedInSphinx40Warning(DeprecationWarning):
pass


class RemovedInSphinx50Warning(PendingDeprecationWarning):
pass


Expand Down

0 comments on commit d501bc1

Please sign in to comment.