aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2024-01-26 21:45:37 +0200
committerArthur Zamarin <arthurzam@gentoo.org>2024-01-26 21:45:37 +0200
commita3812b72e5f93a60b27c674c55d8063d0a0e2b1a (patch)
tree7955586f73a87e8df039f8a83595c9c854056906
parentfix(sphinx_ext): email is optional. (diff)
downloadsnakeoil-a3812b72e5f93a60b27c674c55d8063d0a0e2b1a.tar.gz
snakeoil-a3812b72e5f93a60b27c674c55d8063d0a0e2b1a.tar.bz2
snakeoil-a3812b72e5f93a60b27c674c55d8063d0a0e2b1a.zip
doc/conf.pt: update year + intersphinx_mapping
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
-rw-r--r--doc/conf.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 0a83d80a..c014b530 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -68,7 +68,7 @@ master_doc = "index"
# General information about the project.
project = "snakeoil"
authors = ""
-copyright = "2007-2022, snakeoil contributors"
+copyright = "2007-2024, snakeoil contributors"
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -241,7 +241,9 @@ man_pages = [("index", "snakeoil", "snakeoil Documentation", [], 1)]
# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {"http://docs.python.org/": None}
+intersphinx_mapping = {
+ "python": ("https://docs.python.org/3", None),
+}
autodoc_default_flags = [
"members",
"show-inheritance",