1
0
Files
python-sphinxcontrib-autopr…/sphinx6.patch
Dirk Mueller 5371b0dad5 - update to 0.1.9:
* Test against Python 3.12.
  * Drop support for Python 3.7.
- drop sphinx6.patch skip-failing-test.patch (upstream)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphinxcontrib-autoprogram?expand=0&rev=18
2024-07-01 08:15:16 +00:00

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',
),
}