forked from pool/python-Sphinx
Compare commits
7 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
8392b40d98 | ||
c58cb08239 | |||
|
010541a9fc | ||
ddc596167a | |||
d475bb0b97 | |||
|
44ff6878a5 | ||
42eddaa9a1 |
224
pygments.patch
Normal file
224
pygments.patch
Normal file
@ -0,0 +1,224 @@
|
||||
From 5ff3740063c1ac57f17ecd697bcd06cc1de4e75c Mon Sep 17 00:00:00 2001
|
||||
From: Adam Turner <9087854+aa-turner@users.noreply.github.com>
|
||||
Date: Mon, 6 Jan 2025 06:56:10 +0000
|
||||
Subject: [PATCH] Adapt tests for Pygments 2.19
|
||||
|
||||
---
|
||||
tests/test_builders/test_build_html_code.py | 8 +++++++-
|
||||
tests/test_builders/test_build_latex.py | 9 +++++++--
|
||||
tests/test_directives/test_directive_code.py | 15 +++++++++++++--
|
||||
tests/test_extensions/test_ext_viewcode.py | 8 +++++++-
|
||||
tests/test_highlighting.py | 2 +-
|
||||
tests/test_intl/test_intl.py | 15 +++++++++++++--
|
||||
6 files changed, 48 insertions(+), 9 deletions(-)
|
||||
|
||||
Index: sphinx-8.1.3/tests/test_builders/test_build_html_code.py
|
||||
===================================================================
|
||||
--- sphinx-8.1.3.orig/tests/test_builders/test_build_html_code.py
|
||||
+++ sphinx-8.1.3/tests/test_builders/test_build_html_code.py
|
||||
@@ -1,3 +1,4 @@
|
||||
+import pygments
|
||||
import pytest
|
||||
|
||||
|
||||
@@ -32,11 +33,16 @@ def test_html_codeblock_linenos_style_in
|
||||
|
||||
@pytest.mark.sphinx('html', testroot='reST-code-role')
|
||||
def test_html_code_role(app):
|
||||
+ if tuple(map(int, pygments.__version__.split('.')[:2])) >= (2, 19):
|
||||
+ sp = '<span class="w"> </span>'
|
||||
+ else:
|
||||
+ sp = ' '
|
||||
+
|
||||
app.build()
|
||||
content = (app.outdir / 'index.html').read_text(encoding='utf8')
|
||||
|
||||
common_content = (
|
||||
- '<span class="k">def</span> <span class="nf">foo</span>'
|
||||
+ f'<span class="k">def</span>{sp}<span class="nf">foo</span>'
|
||||
'<span class="p">(</span>'
|
||||
'<span class="mi">1</span> '
|
||||
'<span class="o">+</span> '
|
||||
Index: sphinx-8.1.3/tests/test_builders/test_build_latex.py
|
||||
===================================================================
|
||||
--- sphinx-8.1.3.orig/tests/test_builders/test_build_latex.py
|
||||
+++ sphinx-8.1.3/tests/test_builders/test_build_latex.py
|
||||
@@ -8,6 +8,7 @@ from pathlib import Path
|
||||
from shutil import copyfile
|
||||
from subprocess import CalledProcessError
|
||||
|
||||
+import pygments
|
||||
import pytest
|
||||
|
||||
from sphinx.builders.latex import default_latex_documents
|
||||
@@ -2127,12 +2128,16 @@ def test_latex_container(app):
|
||||
|
||||
@pytest.mark.sphinx('latex', testroot='reST-code-role')
|
||||
def test_latex_code_role(app):
|
||||
+ if tuple(map(int, pygments.__version__.split('.')[:2])) >= (2, 19):
|
||||
+ sp = r'\PYG{+w}{ }'
|
||||
+ else:
|
||||
+ sp = ' '
|
||||
+
|
||||
app.build()
|
||||
content = (app.outdir / 'projectnamenotset.tex').read_text(encoding='utf8')
|
||||
|
||||
common_content = (
|
||||
- r'\PYG{k}{def} '
|
||||
- r'\PYG{n+nf}{foo}'
|
||||
+ r'\PYG{k}{def}' + sp + r'\PYG{n+nf}{foo}'
|
||||
r'\PYG{p}{(}'
|
||||
r'\PYG{l+m+mi}{1} '
|
||||
r'\PYG{o}{+} '
|
||||
Index: sphinx-8.1.3/tests/test_directives/test_directive_code.py
|
||||
===================================================================
|
||||
--- sphinx-8.1.3.orig/tests/test_directives/test_directive_code.py
|
||||
+++ sphinx-8.1.3/tests/test_directives/test_directive_code.py
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
import os.path
|
||||
|
||||
+import pygments
|
||||
import pytest
|
||||
from docutils import nodes
|
||||
|
||||
@@ -393,6 +394,11 @@ def test_literal_include_block_start_wit
|
||||
|
||||
@pytest.mark.sphinx('html', testroot='directive-code')
|
||||
def test_literal_include_linenos(app):
|
||||
+ if tuple(map(int, pygments.__version__.split('.')[:2])) >= (2, 19):
|
||||
+ sp = '<span class="w"> </span>'
|
||||
+ else:
|
||||
+ sp = ' '
|
||||
+
|
||||
app.build(filenames=[app.srcdir / 'linenos.rst'])
|
||||
html = (app.outdir / 'linenos.html').read_text(encoding='utf8')
|
||||
|
||||
@@ -410,7 +416,7 @@ def test_literal_include_linenos(app):
|
||||
|
||||
# :lines: 5-9
|
||||
assert (
|
||||
- '<span class="linenos">5</span><span class="k">class</span> '
|
||||
+ f'<span class="linenos">5</span><span class="k">class</span>{sp}'
|
||||
'<span class="nc">Foo</span><span class="p">:</span>'
|
||||
) in html
|
||||
|
||||
@@ -560,12 +566,17 @@ def test_code_block_highlighted(app):
|
||||
|
||||
@pytest.mark.sphinx('html', testroot='directive-code')
|
||||
def test_linenothreshold(app):
|
||||
+ if tuple(map(int, pygments.__version__.split('.')[:2])) >= (2, 19):
|
||||
+ sp = '<span class="w"> </span>'
|
||||
+ else:
|
||||
+ sp = ' '
|
||||
+
|
||||
app.build(filenames=[app.srcdir / 'linenothreshold.rst'])
|
||||
html = (app.outdir / 'linenothreshold.html').read_text(encoding='utf8')
|
||||
|
||||
# code-block using linenothreshold
|
||||
assert (
|
||||
- '<span class="linenos">1</span><span class="k">class</span> '
|
||||
+ f'<span class="linenos">1</span><span class="k">class</span>{sp}'
|
||||
'<span class="nc">Foo</span><span class="p">:</span>'
|
||||
) in html
|
||||
|
||||
Index: sphinx-8.1.3/tests/test_extensions/test_ext_viewcode.py
|
||||
===================================================================
|
||||
--- sphinx-8.1.3.orig/tests/test_extensions/test_ext_viewcode.py
|
||||
+++ sphinx-8.1.3/tests/test_extensions/test_ext_viewcode.py
|
||||
@@ -6,6 +6,7 @@ import re
|
||||
import shutil
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
+import pygments
|
||||
import pytest
|
||||
|
||||
if TYPE_CHECKING:
|
||||
@@ -13,6 +14,11 @@ if TYPE_CHECKING:
|
||||
|
||||
|
||||
def check_viewcode_output(app: SphinxTestApp) -> str:
|
||||
+ if tuple(map(int, pygments.__version__.split('.')[:2])) >= (2, 19):
|
||||
+ sp = '<span> </span>'
|
||||
+ else:
|
||||
+ sp = ' '
|
||||
+
|
||||
warnings = re.sub(r'\\+', '/', app.warning.getvalue())
|
||||
assert re.findall(
|
||||
r"index.rst:\d+: WARNING: Object named 'func1' not found in include "
|
||||
@@ -41,7 +47,7 @@ def check_viewcode_output(app: SphinxTes
|
||||
'<a class="viewcode-back" href="../../index.html#spam.Class1">[docs]</a>\n'
|
||||
) in result
|
||||
assert '<span>@decorator</span>\n' in result
|
||||
- assert '<span>class</span> <span>Class1</span><span>:</span>\n' in result
|
||||
+ assert f'<span>class</span>{sp}<span>Class1</span><span>:</span>\n' in result
|
||||
assert '<span> </span><span>"""</span>\n' in result
|
||||
assert '<span> this is Class1</span>\n' in result
|
||||
assert '<span> """</span>\n' in result
|
||||
Index: sphinx-8.1.3/tests/test_highlighting.py
|
||||
===================================================================
|
||||
--- sphinx-8.1.3.orig/tests/test_highlighting.py
|
||||
+++ sphinx-8.1.3/tests/test_highlighting.py
|
||||
@@ -10,7 +10,7 @@ from pygments.token import Name, Text
|
||||
|
||||
from sphinx.highlighting import PygmentsBridge
|
||||
|
||||
-if tuple(map(int, pygments.__version__.split('.')))[:2] < (2, 18):
|
||||
+if tuple(map(int, pygments.__version__.split('.')[:2])) < (2, 18):
|
||||
from pygments.formatter import Formatter
|
||||
|
||||
Formatter.__class_getitem__ = classmethod(lambda cls, name: cls) # type: ignore[attr-defined]
|
||||
Index: sphinx-8.1.3/tests/test_intl/test_intl.py
|
||||
===================================================================
|
||||
--- sphinx-8.1.3.orig/tests/test_intl/test_intl.py
|
||||
+++ sphinx-8.1.3/tests/test_intl/test_intl.py
|
||||
@@ -10,6 +10,7 @@ import shutil
|
||||
import time
|
||||
from io import StringIO
|
||||
|
||||
+import pygments
|
||||
import pytest
|
||||
from babel.messages import mofile, pofile
|
||||
from babel.messages.catalog import Catalog
|
||||
@@ -1473,6 +1474,11 @@ def test_xml_strange_markup(app):
|
||||
@pytest.mark.sphinx('html', testroot='intl')
|
||||
@pytest.mark.test_params(shared_result='test_intl_basic')
|
||||
def test_additional_targets_should_not_be_translated(app):
|
||||
+ if tuple(map(int, pygments.__version__.split('.')[:2])) >= (2, 19):
|
||||
+ sp = '<span class="w"> </span>'
|
||||
+ else:
|
||||
+ sp = ' '
|
||||
+
|
||||
app.build()
|
||||
# [literalblock.txt]
|
||||
result = (app.outdir / 'literalblock.html').read_text(encoding='utf8')
|
||||
@@ -1511,7 +1517,7 @@ def test_additional_targets_should_not_b
|
||||
# doctest block should not be translated but be highlighted
|
||||
expected_expr = (
|
||||
"""<span class="gp">>>> </span>"""
|
||||
- """<span class="kn">import</span> <span class="nn">sys</span> """
|
||||
+ f"""<span class="kn">import</span>{sp}<span class="nn">sys</span> """
|
||||
"""<span class="c1"># sys importing</span>"""
|
||||
)
|
||||
assert_count(expected_expr, result, 1)
|
||||
@@ -1556,6 +1562,11 @@ def test_additional_targets_should_not_b
|
||||
},
|
||||
)
|
||||
def test_additional_targets_should_be_translated(app):
|
||||
+ if tuple(map(int, pygments.__version__.split('.')[:2])) >= (2, 19):
|
||||
+ sp = '<span class="w"> </span>'
|
||||
+ else:
|
||||
+ sp = ' '
|
||||
+
|
||||
app.build()
|
||||
# [literalblock.txt]
|
||||
result = (app.outdir / 'literalblock.html').read_text(encoding='utf8')
|
||||
@@ -1605,7 +1616,7 @@ def test_additional_targets_should_be_tr
|
||||
# doctest block should not be translated but be highlighted
|
||||
expected_expr = (
|
||||
"""<span class="gp">>>> </span>"""
|
||||
- """<span class="kn">import</span> <span class="nn">sys</span> """
|
||||
+ f"""<span class="kn">import</span>{sp}<span class="nn">sys</span> """
|
||||
"""<span class="c1"># SYS IMPORTING</span>"""
|
||||
)
|
||||
assert_count(expected_expr, result, 1)
|
@ -1,3 +1,203 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 17 11:52:23 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Add pygments.patch to fix tests with Pygments 2.19
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 17:51:19 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 8.1.3:
|
||||
* #13013: Restore support for :func:`!cut_lines` with no object
|
||||
type. Patch by Adam Turner.
|
||||
* #13012: Expose :exc:`sphinx.errors.ExtensionError` in
|
||||
sphinx.util for backwards compatibility. This will be removed
|
||||
in Sphinx 9, as exposing the exception in sphinx.util was
|
||||
never intentional. :exc:`!ExtensionError` has been part of
|
||||
sphinx.errors since Sphinx 0.9. Patch by Adam Turner.
|
||||
* #13006: Use the preferred https://www.cve.org/ URL for the
|
||||
:rst:role:`:cve: <cve>` role. Patch by Hugo van Kemenade.
|
||||
* #13007: LaTeX: Improve resiliency when the required
|
||||
fontawesome or fontawesome5 packages are not installed. Patch
|
||||
by Jean-François B.
|
||||
* #12756: Add lower-bounds to the sphinxcontrib-* dependencies.
|
||||
Patch by Adam Turner.
|
||||
* #12833: Update the LaTeX parskip package from 2001 to 2018.
|
||||
Patch by Jean-François B.
|
||||
* #12763: Remove unused internal class sphinx.util.Tee. Patch
|
||||
by Adam Turner.
|
||||
* #12822: LaTeX: for Unicode engines, the :ref:`fvset` default
|
||||
is changed to '\fvset{fontsize=auto}' from
|
||||
'\fvset{fontsize=\small}'. Code-blocks are unchanged as
|
||||
FreeMono is now loaded with Scale=0.9. An adjustment to
|
||||
existing projects is needed only if they used a custom
|
||||
:ref:`fontpkg` configuration and did not set :ref:`fvset`.
|
||||
Patch by Jean-François B.
|
||||
* #12875: Disable smartquotes for languages: zh_CN and zh_TW by
|
||||
default. Patch by A. Rafey Khan.
|
||||
* #12762: Deprecate sphinx.util.import_object. Use
|
||||
:py:func:`importlib.import_module` instead. Patch by Adam
|
||||
Turner.
|
||||
* #12766: Deprecate sphinx.util.FilenameUniqDict and
|
||||
sphinx.util.DownloadFiles. Patch by Adam Turner.
|
||||
* #11328: Mention evaluation of templated content during
|
||||
production of static output files. Patch by James Addison.
|
||||
* #12704: LaTeX: make :dudir:`contents <table-of-contents>`,
|
||||
:dudir:`topic`, and :dudir:`sidebar` directives separately
|
||||
customizable for PDF output. Patch by Jean-François B. and
|
||||
Bénédikt Tran.
|
||||
* #12474: Support type-dependent search result highlighting via
|
||||
CSS. Patch by Tim Hoffmann.
|
||||
* #12652: LaTeX: Add :confval:`math_numsep` support to latex
|
||||
builder. Patch by Thomas Fanning and Jean-François B.
|
||||
* #12743: No longer exit on the first warning when
|
||||
:option:`--fail-on-warning <sphinx-build --fail-on-warning>`
|
||||
is used. Instead, exit with a non-zero status if any warnings
|
||||
were generated during the build. Patch by Adam Turner.
|
||||
* #12743: Add :option:`sphinx-build --exception-on-warning`, to
|
||||
raise an exception when warnings are emitted during the
|
||||
build. Patch by Adam Turner and Jeremy Maitin-Shepard.
|
||||
* #12907: Add :confval:`html_last_updated_use_utc` to allow
|
||||
using universal time (GMT/UTC) instead of local time for the
|
||||
date-time supplied to :confval:`html_last_updated_fmt`. Patch
|
||||
by Adam Turner.
|
||||
* #12910: Copyright entries now support the '%Y' placeholder to
|
||||
substitute the current year. This is helpful for reducing the
|
||||
reliance on Python modules such as :py:mod:`time` or
|
||||
:py:mod:`datetime` in :file:`conf.py`. See :ref:`the docs
|
||||
<config-copyright>` for further detail. Patch by Adam Turner.
|
||||
* #11781: Add roles for referencing CVEs (:rst:role:`:cve:
|
||||
<cve>`) and CWEs (:rst:role:`:cwe: <cwe>`). Patch by Hugo van
|
||||
Kemenade.
|
||||
* #11809: Improve the formatting for RFC section anchors. Patch
|
||||
by Jakub Stasiak and Adam Turner.
|
||||
* #12852: Support a :attr:`.Builder.supported_linkcode`
|
||||
attribute for builders to enable use of
|
||||
:mod:`sphinx.ext.linkcode`-generated references. Patch by
|
||||
James Knight.
|
||||
* #12949: Print configuration options that differ from the
|
||||
pickled environment. This can be helpful in diagnosing the
|
||||
cause of a full rebuild. Patch by Adam Turner.
|
||||
* #12514: intersphinx: fix the meaning of a negative value for
|
||||
:confval:`intersphinx_cache_limit`. Patch by Shengyu Zhang.
|
||||
* #12722: LaTeX: avoid TeX reporting Overfull \hbox from too
|
||||
long strings in a codeline when the problem has actually been
|
||||
solved thanks to :ref:`latexsphinxsetupforcewraps`. Patch by
|
||||
Jean-François B.
|
||||
* #12730: The UnreferencedFootnotesDetector transform has been
|
||||
improved to more consistently detect unreferenced footnotes.
|
||||
Note, the priority of the transform has been changed from 200
|
||||
to 622, so that it now runs after the docutils Footnotes
|
||||
resolution transform. Patch by Chris Sewell.
|
||||
* #12778: LaTeX: let :ref:`'sphinxsetup' <latexsphinxsetup>`
|
||||
div.topic_box-shadow key if used with only one dimension set
|
||||
both x-offset and y-offset as per documentation. Patch by
|
||||
Jean-François B.
|
||||
* #12587: Do not warn when potential ambiguity detected during
|
||||
Intersphinx resolution occurs due to duplicate targets that
|
||||
differ case-insensitively. Patch by James Addison.
|
||||
* #12639: Fix singular and plural search results text. Patch by
|
||||
Hugo van Kemenade.
|
||||
* #12645: Correctly support custom gettext output templates.
|
||||
Patch by Jeremy Bowman.
|
||||
* #12717: LaTeX: let :option:`-q <sphinx-build -q>` (quiet)
|
||||
option for :program:`sphinx-build -M latexpdf` or
|
||||
:program:`make latexpdf` (O=-q) get passed to
|
||||
:program:`latexmk`. Let :option:`-Q <sphinx-build -Q>`
|
||||
(silent) apply as well to the PDF build phase. Patch by Jean-
|
||||
François B.
|
||||
* #12744: LaTeX: Classes injected by a custom interpreted text
|
||||
role now give rise to nested \DUrole's, rather than a single
|
||||
one with comma separated classes. Patch by Jean-François B.
|
||||
* #12831: LaTeX: avoid large voids sometimes occurring at page
|
||||
bottoms. Patch by Jean-François B.
|
||||
* #11970, #12551: singlehtml builder: make target URIs to be
|
||||
same-document references in the sense of :rfc:`RFC 3986, §4.4
|
||||
<3986#section-4.4>`, e.g., index.html#foo becomes #foo.
|
||||
(note: continuation of a partial fix added in Sphinx 7.3.0)
|
||||
Patch by James Addison (with reference to prior work by Eric
|
||||
Norige).
|
||||
* #12735: Fix PEP 695 generic classes LaTeX output formatting.
|
||||
Patch by Jean-François B. and Bénédikt Tran.
|
||||
* #12782: intersphinx: fix double forward slashes when
|
||||
generating the inventory file URL (user-defined base URL of
|
||||
an intersphinx project are left untouched even if they end
|
||||
with double forward slashes). Patch by Bénédikt Tran.
|
||||
* #12796: Enable parallel reading if requested, even if there
|
||||
are fewer than 6 documents. Patch by Matthias Geier.
|
||||
* #12844: Restore support for :noindex: for the
|
||||
:rst:dir:`js:module` and :rst:dir:`py:module` directives.
|
||||
Patch by Stephen Finucane.
|
||||
* #12916: Restore support for custom templates named with the
|
||||
legacy _t suffix during apidoc RST rendering (regression in
|
||||
7.4.0). Patch by James Addison.
|
||||
* #12451: Only substitute copyright notice years with values
|
||||
from SOURCE_DATE_EPOCH for entries that match the current
|
||||
system clock year, and disallow substitution of future years.
|
||||
Patch by James Addison and Adam Turner.
|
||||
* #12905: intersphinx: fix flipped use of
|
||||
:confval:`intersphinx_cache_limit`, which always kept the
|
||||
cache for positive values, and always refreshed it for
|
||||
negative ones. Patch by Nico Madysa.
|
||||
* #12888: Add a warning when document is included in multiple
|
||||
toctrees and ensure deterministic resolution of global
|
||||
toctree in parallel builds by choosing the lexicographically
|
||||
greatest parent document. Patch by A. Rafey Khan
|
||||
* #12995: Significantly improve performance when building the
|
||||
search index for Chinese languages. Patch by Adam Turner.
|
||||
* #12767: :py:meth:`.Builder.write` is typed as final, meaning
|
||||
that the :event:`write-started` event may be relied upon by
|
||||
extensions. A new :py:meth:`.Builder.write_documents` method
|
||||
has been added to control how documents are written. This is
|
||||
intended for builders that do not output a file for each
|
||||
document. Patch by Adam Turner.
|
||||
* #12141: Migrate from the deprecated karma JavaScript test
|
||||
framework to the actively-maintained jasmine framework. Test
|
||||
coverage is unaffected. Patch by James Addison.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 1 14:31:32 UTC 2024 - Christoph G <foss@grueninger.de>
|
||||
|
||||
- update to 8.0.2
|
||||
* #12633: Drop Python 3.9 support.
|
||||
* Remove deprecated functions from sphinx.util:
|
||||
+ Removed sphinx.util.path_stabilize (use sphinx.util.osutil.path_stabilize).
|
||||
+ Removed sphinx.util.display_chunk (use sphinx.util.display.display_chunk).
|
||||
+ Removed sphinx.util.status_iterator (use sphinx.util.display.status_iterator).
|
||||
+ Removed sphinx.util.SkipProgressMessage (use
|
||||
sphinx.util.display.SkipProgressMessage).
|
||||
+ Removed sphinx.util.progress_message (use
|
||||
sphinx.util.display.progress_message).
|
||||
+ Removed sphinx.util.epoch_to_rfc1123 (use sphinx.http_date.epoch_to_rfc1123).
|
||||
+ Removed sphinx.util.rfc1123_to_epoch (use sphinx.http_date.rfc1123_to_epoch).
|
||||
+ Removed sphinx.util.save_traceback (use sphinx.exceptions.save_traceback).
|
||||
+ Removed sphinx.util.format_exception_cut_frames (use
|
||||
sphinx.exceptions.format_exception_cut_frames).
|
||||
+ Removed sphinx.util.xmlname_checker (use
|
||||
sphinx.builders.epub3._XML_NAME_PATTERN).
|
||||
+ Removed sphinx.util.osutil.cd() (use contextlib.chdir()).
|
||||
+ Removed sphinx.util.typing.stringify() (use
|
||||
sphinx.util.typing.stringify_annotation()).
|
||||
* #12593: Raise an error for invalid html_sidebars values.
|
||||
* #12593: Raise an error in Theme.get_config() for invalid sections.
|
||||
* #11693: Remove support for old-style Makefile and make.bat output in
|
||||
sphinx-quickstart.
|
||||
* #11693: Remove the --no-use-make-mode, -M, --use-make-mode, and -m options
|
||||
from sphinx-quickstart.
|
||||
* Removed the tuple interface to sphinx.ext.autodoc.ObjectMember.
|
||||
* #12630: Sphinx 8 makes two changes to the linkcheck configuration defaults:
|
||||
+ linkcheck_allow_unauthorized is now False by default.
|
||||
+ linkcheck_report_timeouts_as_broken is now False by default.
|
||||
* #12597: Change the default of show_warning_types from False to True.
|
||||
* #12083: Remove support for the old (2008–2010) Sphinx 0.5 and Sphinx 0.6
|
||||
intersphinx_mapping format.
|
||||
* #12096: Do not overwrite user-supplied files when copying assets unless
|
||||
forced with force=True.
|
||||
* #12646: Remove sphinx.util.inspect.isNewType(). Use isinstance(obj,
|
||||
typing.NewType) instead on Python 3.10 and newer.
|
||||
* Remove the long-deprecated (since Sphinx 2) alias to VersionChange in
|
||||
sphinx.directives.other (Deprecated since Sphinx 2). Use
|
||||
sphinx.domains.changeset.VersionChange directly.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 18 07:27:41 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-Sphinx
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -26,7 +26,7 @@
|
||||
%endif
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-Sphinx%{psuffix}
|
||||
Version: 7.4.5
|
||||
Version: 8.1.3
|
||||
Release: 0
|
||||
Summary: Python documentation generator
|
||||
License: BSD-2-Clause
|
||||
@ -42,6 +42,8 @@ Source3: requests.inv
|
||||
Source4: readthedocs.inv
|
||||
Source5: update-intersphinx.sh
|
||||
Source99: python-Sphinx.keyring
|
||||
# PATCH-FIX-UPSTREAM https://github.com/sphinx-doc/sphinx/commit/5ff3740063c1ac57f17ecd697bcd06cc1de4e75c Adapt tests for Pygments 2.19
|
||||
Patch: pygments.patch
|
||||
BuildRequires: %{python_module base}
|
||||
BuildRequires: %{python_module flit-core}
|
||||
BuildRequires: %{python_module pip}
|
||||
@ -61,23 +63,19 @@ Requires: python-imagesize
|
||||
Requires: python-packaging
|
||||
Requires: python-requests >= 2.5.0
|
||||
Requires: python-snowballstemmer >= 1.1
|
||||
Requires: python-sphinx_rtd_theme
|
||||
Requires: python-sphinxcontrib-applehelp
|
||||
Requires: python-sphinxcontrib-devhelp
|
||||
Requires: python-sphinxcontrib-htmlhelp >= 2.0.0
|
||||
Requires: python-sphinxcontrib-jsmath
|
||||
Requires: python-sphinxcontrib-qthelp >= 1.0.2
|
||||
Requires: python-sphinxcontrib-serializinghtml >= 1.1.9
|
||||
Requires: python-sphinxcontrib-websupport
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
Recommends: python-SQLAlchemy >= 0.9
|
||||
Recommends: python-Sphinx-doc-man
|
||||
Recommends: python-Whoosh >= 2.0
|
||||
Suggests: python-sphinx_rtd_theme
|
||||
BuildArch: noarch
|
||||
%if 0%{?python_version_nodots} < 310
|
||||
Requires: python-importlib-metadata >= 4.4
|
||||
%endif
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module Cython}
|
||||
BuildRequires: %{python_module Sphinx = %{version}}
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:47e85ad1d3fc4c379ec26262ad14d475df7d29c47eeb6d9fd350a2e52ef08ed2
|
||||
size 133169
|
||||
oid sha256:598ad1ec233664ebd19d2e703bedb6832c0bc2cf47ae07b6d5c44dc814d02bda
|
||||
size 138527
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:59eb0c9a25e3facf8b32c303e139fd920133b666259bc633bbb86139d3bbccf0
|
||||
size 25610
|
||||
oid sha256:3508dae5ee03891797df9df88cbc9c580f0a543eac4f90e1948943fec0dbab17
|
||||
size 26715
|
||||
|
BIN
requests.inv
BIN
requests.inv
Binary file not shown.
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a4abe5385bf856df094c1e6cadf24a2351b12057be3670b99a12c05a01d209f5
|
||||
size 8115101
|
3
sphinx-8.1.3.tar.gz
Normal file
3
sphinx-8.1.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927
|
||||
size 8184611
|
Loading…
x
Reference in New Issue
Block a user