summaryrefslogtreecommitdiff
path: root/sphinx/util
diff options
context:
space:
mode:
authorAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-04-30 19:09:58 +0100
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-04-30 19:10:27 +0100
commit3f8bf7acb1d9750f7e18f898c74c90e356f310f0 (patch)
tree8618029d086d656d2b4dd34417ef53c72d15afda /sphinx/util
parente7cea699540bbcf31db1c07bc2734bd0485f0d13 (diff)
downloadsphinx-git-3f8bf7acb1d9750f7e18f898c74c90e356f310f0.tar.gz
Schedule removal for 7.0
Diffstat (limited to 'sphinx/util')
-rw-r--r--sphinx/util/jsdump.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/util/jsdump.py b/sphinx/util/jsdump.py
index 008cb6153..77acef9d2 100644
--- a/sphinx/util/jsdump.py
+++ b/sphinx/util/jsdump.py
@@ -6,7 +6,7 @@ Uses the basestring encode function from simplejson by Bob Ippolito.
import re
from typing import IO, Any, Dict, List, Match, Union
-from sphinx.deprecation import RemovedInSphinx60Warning, deprecated_alias
+from sphinx.deprecation import RemovedInSphinx70Warning, deprecated_alias
_str_re = re.compile(r'"(\\\\|\\"|[^"])*"')
_int_re = re.compile(r'\d+')
@@ -204,7 +204,7 @@ deprecated_alias(
'loads': loads,
'load': load,
},
- RemovedInSphinx60Warning,
+ RemovedInSphinx70Warning,
{
'dumps': 'json.dumps',
'dump': 'json.dump',