Your message dated Thu, 06 Nov 2025 19:35:44 +0000
with message-id <[email protected]>
and subject line Bug#1120191: fixed in sphinx-design 0.6.1-2
has caused the Debian Bug report #1120191,
regarding sphinx-design: FTBFS: dh_auto_test: error: pybuild --test 
--test-pytest -i python{version} -p 3.13 returned exit code 13
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1120191: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1120191
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:sphinx-design
Version: 0.6.1-1
Severity: serious
Tags: ftbfs forky sid

Dear maintainer:

During a rebuild of all packages in unstable, this package failed to build.

Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:

https://people.debian.org/~sanvila/build-logs/202511/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:sphinx-design, so that this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
 debian/rules clean
dh clean --with python3 --buildsystem=pybuild
   dh_auto_clean -O--buildsystem=pybuild
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
 debian/rules binary
dh binary --with python3 --buildsystem=pybuild
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild
   dh_auto_build -O--buildsystem=pybuild
I: pybuild plugin_pyproject:129: Building wheel for python3.13 with "build" 
module
I: pybuild base:311: python3.13 -m build --skip-dependency-check --no-isolation 
--wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_sphinx-design  
* Building wheel...
Successfully built sphinx_design-0.6.1-py3-none-any.whl
I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.13 with 
"installer" module
   dh_auto_test -O--buildsystem=pybuild
I: pybuild base:311: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_sphinx-design/build; python3.13 -m 
pytest tests
============================= test session starts ==============================
platform linux -- Python 3.13.9, pytest-8.4.2, pluggy-1.6.0
rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_sphinx-design/build
configfile: pyproject.toml
plugins: datadir-1.4.1+ds, regressions-2.5.0+ds, typeguard-4.4.4, cov-5.0.0
collected 8 items

tests/test_misc.py .                                                     [ 12%]
tests/test_snippets.py ssss..F                                           [100%]

=================================== FAILURES ===================================
__________________________ test_sd_custom_directives ___________________________

sphinx_builder = <function sphinx_builder.<locals>._create_project at 
0x7f46b40dd9e0>
file_regression = <pytest_regressions.file_regression.FileRegressionFixture 
object at 0x7f46b40c6060>

    @pytest.mark.skipif(not MYST_INSTALLED, reason="myst-parser not installed")
    def test_sd_custom_directives(
        sphinx_builder: Callable[..., SphinxBuilder], file_regression
    ):
        """Test that the defaults are used."""
        builder = sphinx_builder(
            conf_kwargs={
                "extensions": ["myst_parser", "sphinx_design"],
                "sd_custom_directives": {
                    "dropdown-syntax": {
                        "inherit": "dropdown",
                        "argument": "Syntax",
                        "options": {
                            "color": "primary",
                            "icon": "code",
                        },
                    }
                },
            }
        )
        content = "# Heading\n\n```{dropdown-syntax}\ncontent\n```"
        builder.src_path.joinpath("index.md").write_text(content, 
encoding="utf8")
        builder.build()
        doctree = builder.get_doctree("index", post_transforms=False)
        doctree.attributes.pop("translation_progress", None)  # added in sphinx 
7.1
>       file_regression.check(
            doctree.pformat(),
            basename="sd_custom_directives",
            extension=".xml",
            encoding="utf8",
        )
E       AssertionError: FILES DIFFER:
E       
/tmp/pytest-of-sbuild/pytest-0/test_sd_custom_directives0/test_snippets/sd_custom_directives.xml
E       
/tmp/pytest-of-sbuild/pytest-0/test_sd_custom_directives0/test_snippets/sd_custom_directives.obtained.xml
E       HTML DIFF: 
/tmp/pytest-of-sbuild/pytest-0/test_sd_custom_directives0/test_snippets/sd_custom_directives.obtained.diff.html
E       --- 
E       +++ 
E       @@ -2,7 +2,7 @@
E            <section ids="heading" names="heading">
E                <title>
E                    Heading
E       -        <container body_classes="" chevron="True" 
container_classes="sd-mb-3" design_component="dropdown" has_title="True" 
icon="code" is_div="True" opened="False" title_classes="sd-bg-primary 
sd-bg-text-primary" type="dropdown">
E       +        <container body_classes="" chevron="True" 
container_classes="sd-mb-3" design_component="dropdown" has_title="1" 
icon="code" is_div="1" opened="0" title_classes="sd-bg-primary 
sd-bg-text-primary" type="dropdown">
E                    <rubric>
E                        Syntax
E                    <paragraph>

tests/test_snippets.py:190: AssertionError
=============================== warnings summary ===============================
tests/test_snippets.py::test_sd_hide_title_rst
tests/test_snippets.py::test_sd_hide_title_myst
tests/test_snippets.py::test_sd_custom_directives
  /usr/lib/python3/dist-packages/sphinx/builders/html/__init__.py:154: 
PendingDeprecationWarning: Argument "parser_name" will be removed in Docutils 
2.0.
    Specify parser name in the "parser" argument.
    reader: Reader[DocTreeInput] = docutils.readers.doctree.Reader(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/test_snippets.py::test_sd_custom_directives - AssertionError: FI...
============== 1 failed, 3 passed, 4 skipped, 3 warnings in 0.44s ==============
E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_sphinx-design/build; python3.13 -m 
pytest tests
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.13 
returned exit code 13
make: *** [debian/rules:6: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

--- End Message ---
--- Begin Message ---
Source: sphinx-design
Source-Version: 0.6.1-2
Done: Gianfranco Costamagna <[email protected]>

We believe that the bug you reported is fixed in the latest version of
sphinx-design, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Gianfranco Costamagna <[email protected]> (supplier of updated 
sphinx-design package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Thu, 06 Nov 2025 20:02:53 +0100
Source: sphinx-design
Built-For-Profiles: noudeb
Architecture: source
Version: 0.6.1-2
Distribution: unstable
Urgency: medium
Maintainer: Gianfranco Costamagna <[email protected]>
Changed-By: Gianfranco Costamagna <[email protected]>
Closes: 1120191
Changes:
 sphinx-design (0.6.1-2) unstable; urgency=medium
 .
   * Bump std-version to 4.7.2
   * Bump myst-parser to <5 with upstream PR#220 (Closes: #1120191)
   * Bump pydata-sphinx-theme to <0.17.0 with upstream PR#225
   * Bump sphinx-rtd-theme to <4 with upstream PR#227
   * Fix test failure with upstream proposed PR#244
Checksums-Sha1:
 320132e8777c24400faa4bd00700ae074821b5b3 2057 sphinx-design_0.6.1-2.dsc
 eae75d2a3ed0298f748d8c0264a0e163ffeede79 4428 
sphinx-design_0.6.1-2.debian.tar.xz
 d9f663bf22cf403ff3d9e77184a3341d734f9562 7389 
sphinx-design_0.6.1-2_source.buildinfo
Checksums-Sha256:
 762230df3923b467f77d0803cb8b122ef824ac22526d1cbe4b3e2a4eca52dde5 2057 
sphinx-design_0.6.1-2.dsc
 2f00e95d9b6355ada38e6ac67b939b2ac8472d4c1c66ce2403c601f4076c0324 4428 
sphinx-design_0.6.1-2.debian.tar.xz
 0a8794de6fc3ab27a4a463ea29d9a49a1321ac7d49d5130d346502d1fd07e88e 7389 
sphinx-design_0.6.1-2_source.buildinfo
Files:
 4a13a051f31f2fed631d40d5da538afa 2057 python optional sphinx-design_0.6.1-2.dsc
 c861e4b4636d5e6b832b846d073b145c 4428 python optional 
sphinx-design_0.6.1-2.debian.tar.xz
 809c883e328edc51e205d8d56572248a 7389 python optional 
sphinx-design_0.6.1-2_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEkpeKbhleSSGCX3/w808JdE6fXdkFAmkM9TQACgkQ808JdE6f
XdkyZQ//YKil161BRK4l/va3JebDM1s0m5t+BJ/O2f+IbccZcv/HHf9sf7rly+JF
92jo4CJjgzMSmB+oiCUxyGsR4e5lBa4+aBasSk/Z+56JRLS5bBclE+H3QfmyDB3+
5n9VrHoQWHSkcFfR+jRZ7WFkcbVwrb0ZhYClBdZWBrH6wusPHxu/w3IHgNh+tanH
cJ/vxOAuMieIwL6b5MZbm5XW5t6kDt+XdgDwbCeaoJ+kyFWBhv3nn6jWH+OxJq/3
B49A1hDB9pK1w7MBnPWgr2x0ioNzvqgUbKQcCdiYn6Gt+4kDK+kKJwPJwbnm/vOd
ei6+1WsktIVbo2dL6W3q9Qgdt8KBKHRATb7AWecRc3FvOYirT0nEsZoXTh2bjQIo
V125sWsCrTR+jjAj41kPfBe2T+80kGCU2te+f+CL/unRy//Ij57e3M/lMvvp3tkU
Zs7tIXHXAKHCOxmDl/sYUYUUEECABFdWiZz0baDA8cVx027ozqOhxYNKVPfgYZWK
4QLLU2TOYdAiTwZzYzB1G+IuVFH5Us/qSVAOyE0SDHTfyB/P3MMQEb+23fB6zkIZ
ob+3UjBkKgOwGZk5+WSu6i9+WF814a/Tup30c53ShufK4B7XMDf4VF5CebARDHhG
Kdjmx0TKn95l+DDM5c7cKj7M9EMkYZBM+fYIIjc4MLRyBx2U8po=
=Ivrd
-----END PGP SIGNATURE-----

Attachment: pgpIHNKimcicX.pgp
Description: PGP signature


--- End Message ---

Reply via email to