This repository was archived by the owner on Apr 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,8 @@ sphinxcontrib-devhelp==1.0.2
103
103
# via sphinx
104
104
sphinxcontrib-htmlhelp == 2.0.0
105
105
# via sphinx
106
+ sphinxcontrib-jquery == 2.0.0
107
+ # via sphinx-hoverxref (pyproject.toml)
106
108
sphinxcontrib-jsmath == 1.0.1
107
109
# via sphinx
108
110
sphinxcontrib-qthelp == 1.0.3
@@ -119,3 +121,6 @@ urllib3==1.26.12
119
121
# via requests
120
122
wrapt == 1.14.1
121
123
# via astroid
124
+
125
+ # The following packages are considered to be unsafe in a requirements file:
126
+ # setuptools
Original file line number Diff line number Diff line change @@ -397,6 +397,9 @@ def setup(app):
397
397
if f .endswith ('.css' ) or f .endswith ('.css_t' ):
398
398
app .add_css_file (f .replace ('.css_t' , '.css' ))
399
399
400
+ # Sphinx>=6 won't include jQuery anymore
401
+ app .setup_extension ('sphinxcontrib.jquery' )
402
+
400
403
return {
401
404
'version' : __version__ ,
402
405
'parallel_read_safe' : True ,
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ keywords=[
18
18
]
19
19
dependencies = [
20
20
" sphinx >=1.8" ,
21
+ " sphinxcontrib-jquery" ,
21
22
]
22
23
version = " 1.2.0"
23
24
readme = " README.rst"
You can’t perform that action at this time.
0 commit comments