Skip to content

Commit 77a0e29

Browse files
authoredJan 10, 2025
Compatibility with Sphinx 8.2, minor clean up (#196)
* MNT: Remove unnecessary try-except * DEP: Require packaging * Compat with sphinx 8.2
1 parent 2eb7d26 commit 77a0e29

File tree

2 files changed

+24
-15
lines changed

2 files changed

+24
-15
lines changed
 

‎setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ zip_safe = False
2020
packages = find:
2121
python_requires = >=3.8
2222
install_requires =
23+
packaging
2324
sphinx>=4
2425

2526
[options.extras_require]

‎sphinx_automodapi/automodsumm.py

+23-15
Original file line numberDiff line numberDiff line change
@@ -99,16 +99,19 @@ class members that are inherited from a base class. This value can be
9999
import os
100100
import re
101101

102+
import sphinx
103+
from docutils.parsers.rst.directives import flag
104+
from packaging.version import Version
102105
from sphinx.util import logging
103106
from sphinx.ext.autosummary import Autosummary
104107
from sphinx.ext.inheritance_diagram import InheritanceDiagram, InheritanceGraph, try_import
105-
from docutils.parsers.rst.directives import flag
106108

107109
from .utils import find_mod_objs, cleanup_whitespace
108110

109111
__all__ = ['Automoddiagram', 'Automodsumm', 'automodsumm_to_autosummary_lines',
110112
'generate_automodsumm_docs', 'process_automodsumm_generation']
111113
logger = logging.getLogger(__name__)
114+
SPHINX_LT_8_2 = Version(sphinx.__version__) < Version("8.2.dev")
112115

113116

114117
def _str_list_converter(argument):
@@ -267,15 +270,24 @@ def run(self):
267270

268271
old_generate_dot = InheritanceGraph.generate_dot
269272

270-
271-
def patched_generate_dot(self, name, urls={}, env=None,
272-
graph_attrs={}, node_attrs={}, edge_attrs={}):
273-
# Make a new mapping dictionary that uses class full names by importing each
274-
# class documented name
275-
fullname_urls = {self.class_name(try_import(name), 0, None): url
276-
for name, url in urls.items() if try_import(name) is not None}
277-
return old_generate_dot(self, name, urls=fullname_urls, env=env,
278-
graph_attrs=graph_attrs, node_attrs=node_attrs, edge_attrs=edge_attrs)
273+
if SPHINX_LT_8_2:
274+
def patched_generate_dot(self, name, urls={}, env=None,
275+
graph_attrs={}, node_attrs={}, edge_attrs={}):
276+
# Make a new mapping dictionary that uses class full names by importing each
277+
# class documented name
278+
fullname_urls = {self.class_name(try_import(name), 0, None): url
279+
for name, url in urls.items() if try_import(name) is not None}
280+
return old_generate_dot(self, name, urls=fullname_urls, env=env,
281+
graph_attrs=graph_attrs, node_attrs=node_attrs, edge_attrs=edge_attrs)
282+
else:
283+
def patched_generate_dot(self, name, urls={}, config=None,
284+
graph_attrs={}, node_attrs={}, edge_attrs={}):
285+
# Make a new mapping dictionary that uses class full names by importing each
286+
# class documented name
287+
fullname_urls = {self.class_name(try_import(name), 0, None): url
288+
for name, url in urls.items() if try_import(name) is not None}
289+
return old_generate_dot(self, name, urls=fullname_urls, config=config,
290+
graph_attrs=graph_attrs, node_attrs=node_attrs, edge_attrs=edge_attrs)
279291

280292

281293
InheritanceGraph.generate_dot = patched_generate_dot
@@ -532,9 +544,7 @@ def generate_automodsumm_docs(lines, srcfn, app=None, suffix='.rst',
532544

533545
new_files.append(fn)
534546

535-
f = open(fn, 'w', encoding='utf8')
536-
537-
try:
547+
with open(fn, 'w', encoding='utf8') as f:
538548

539549
doc = get_documenter(app, obj, parent)
540550

@@ -672,8 +682,6 @@ def get_members_class(obj, typ, include_public=[],
672682

673683
rendered = template.render(**ns)
674684
f.write(cleanup_whitespace(rendered))
675-
finally:
676-
f.close()
677685

678686

679687
def setup(app):

0 commit comments

Comments
 (0)