forked from pool/python-sphinxcontrib-autoprogram
38 lines
1.1 KiB
Diff
38 lines
1.1 KiB
Diff
|
From ca22060f8be35e2ba8009a50d3b0c4638219fe5d Mon Sep 17 00:00:00 2001
|
||
|
From: Daniel Garcia Moreno <daniel.garcia@suse.com>
|
||
|
Date: Mon, 6 Mar 2023 11:25:04 +0100
|
||
|
Subject: [PATCH] doc: Fix build with sphinx > 6.0
|
||
|
|
||
|
Fix https://github.com/sphinx-contrib/autoprogram/issues/61
|
||
|
---
|
||
|
doc/conf.py | 8 ++++----
|
||
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
||
|
|
||
|
Index: autoprogram-0.1.8/doc/conf.py
|
||
|
===================================================================
|
||
|
--- autoprogram-0.1.8.orig/doc/conf.py
|
||
|
+++ autoprogram-0.1.8/doc/conf.py
|
||
|
@@ -282,18 +282,18 @@ intersphinx_mapping = {
|
||
|
extlinks = {
|
||
|
'pull': (
|
||
|
'https://github.com/sphinx-contrib/autoprogram/pull/%s',
|
||
|
- '#'
|
||
|
+ '#%s'
|
||
|
),
|
||
|
'issue': (
|
||
|
'https://github.com/sphinx-contrib/autoprogram/issues/%s',
|
||
|
- '#'
|
||
|
+ '#%s'
|
||
|
),
|
||
|
'bbpull': (
|
||
|
'https://bitbucket.org/birkenfeld/sphinx-contrib/pull-request/%s/',
|
||
|
- 'Bitbucket PR #',
|
||
|
+ 'Bitbucket PR #%s',
|
||
|
),
|
||
|
'bbissue': (
|
||
|
'https://bitbucket.org/birkenfeld/sphinx-contrib/issue/%s/',
|
||
|
- 'Bitbucket issue #',
|
||
|
+ 'Bitbucket issue #%s',
|
||
|
),
|
||
|
}
|