diff options
author | Jonathan Corbet <corbet@lwn.net> | 2023-12-08 16:10:17 -0700 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2023-12-15 08:36:33 -0700 |
commit | 3e893e16af55eeeca8faebabcb36fe78c854ba21 (patch) | |
tree | 88c258a4c2ee11dc9413d193acc96397d7b3676b /Documentation/sphinx/cdomain.py | |
parent | 50709576d81bbcbe027d22c64cd2ec934bd9087b (diff) | |
download | linux-3e893e16af55eeeca8faebabcb36fe78c854ba21.tar.gz linux-3e893e16af55eeeca8faebabcb36fe78c854ba21.tar.bz2 linux-3e893e16af55eeeca8faebabcb36fe78c854ba21.zip |
docs: Raise the minimum Sphinx requirement to 2.4.4
Commit 31abfdda6527 (docs: Deprecate use of Sphinx < 2.4.x) in 6.2 added a
warning that support for older versions of Sphinx would be going away.
There have been no complaints, so the time has come. Raise the minimum
Sphinx version to 2.4.4 and clean out some compatibility code that we no
longer need.
Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Link: https://lore.kernel.org/r/874jgs47fq.fsf@meer.lwn.net
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/sphinx/cdomain.py')
-rw-r--r-- | Documentation/sphinx/cdomain.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Documentation/sphinx/cdomain.py b/Documentation/sphinx/cdomain.py index 4eb150bf509c..e6959af25402 100644 --- a/Documentation/sphinx/cdomain.py +++ b/Documentation/sphinx/cdomain.py @@ -127,11 +127,7 @@ def setup(app): # Handle easy Sphinx 3.1+ simple new tags: :c:expr and .. c:namespace:: app.connect('source-read', c_markups) - - if (major == 1 and minor < 8): - app.override_domain(CDomain) - else: - app.add_domain(CDomain, override=True) + app.add_domain(CDomain, override=True) return dict( version = __version__, |