File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ install_requires =
51
51
eralchemy ==1.2.*
52
52
hieroglyph>=2.1.0
53
53
setuptools>=50
54
- sphinx>=7.1, <7 .4
54
+ sphinx>=7.1, !=7.4 .4
55
55
sphinx-design>=0.5.0
56
56
sphinx_rtd_theme>=1.0.0
57
57
sphinxcontrib-svg2pdfconverter
Original file line number Diff line number Diff line change @@ -175,6 +175,12 @@ def generate_task_icon_modifier_rst():
175
175
('py:class' , r'zmq\.asyncio\.\w+' )
176
176
]
177
177
178
+ suppress_warnings = [
179
+ # Workaround https://github.com/sphinx-doc/sphinx/issues/12589
180
+ # and https://github.com/sphinx-doc/sphinx/issues/12660:
181
+ 'autosummary.import_cycle' ,
182
+ ]
183
+
178
184
# List of patterns, relative to source directory, that match files and
179
185
# directories to ignore when looking for source files.
180
186
exclude_patterns = ['user-guide/examples/**README.rst' ]
@@ -326,5 +332,3 @@ def generate_task_icon_modifier_rst():
326
332
# Create sentence case versions of wordlist:
327
333
sentence_case = [word .capitalize () for word in words ]
328
334
sentence_case_file .write_text ('\n ' .join (sentence_case ) + '\n ' )
329
-
330
-
You can’t perform that action at this time.
0 commit comments