Skip to content

Commit f60c290

Browse files
committed
manpages: allow Sphinx 9
Change-Id: I50427f6abf9ada22ba1190b02bb03677c75408e7
1 parent 9ae6a8a commit f60c290

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

manpages/conf.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

99
project = 'NDN Essential Tools'
10-
copyright = 'Copyright © 2014-2025 Named Data Networking Project.'
10+
copyright = '2014-2026, Named Data Networking Project'
1111
author = 'Named Data Networking Project'
1212

1313
# The short X.Y version.
@@ -26,10 +26,16 @@
2626
# -- General configuration ---------------------------------------------------
2727
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
2828

29-
needs_sphinx = '4.0'
29+
needs_sphinx = '7.0'
3030
extensions = []
3131

32-
exclude_patterns = ['Thumbs.db', '.DS_Store']
32+
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
33+
34+
# Disable syntax highlighting of code blocks by default.
35+
highlight_language = 'none'
36+
37+
# Generate warnings for all missing references.
38+
nitpicky = True
3339

3440

3541
# -- Options for manual page output ------------------------------------------

manpages/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
docutils>=0.20
2-
sphinx>=7.0.1,<9
2+
sphinx>=7.0.1,<10

0 commit comments

Comments
 (0)