Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-autodocsumm for openSUSE:Factory checked in at 2023-09-04 22:52:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-autodocsumm (Old) and /work/SRC/openSUSE:Factory/.python-autodocsumm.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-autodocsumm" Mon Sep 4 22:52:26 2023 rev:13 rq:1108040 version:0.2.11 Changes: -------- --- /work/SRC/openSUSE:Factory/python-autodocsumm/python-autodocsumm.changes 2023-05-21 19:08:42.830436977 +0200 +++ /work/SRC/openSUSE:Factory/.python-autodocsumm.new.1766/python-autodocsumm.changes 2023-09-04 22:52:31.553527160 +0200 @@ -1,0 +2,5 @@ +Mon Aug 28 12:45:01 UTC 2023 - Markéta Machová <mmach...@suse.com> + +- Add patch sphinx72.patch + +------------------------------------------------------------------- New: ---- sphinx72.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-autodocsumm.spec ++++++ --- /var/tmp/diff_new_pack.YAiEw9/_old 2023-09-04 22:52:32.761569861 +0200 +++ /var/tmp/diff_new_pack.YAiEw9/_new 2023-09-04 22:52:32.765570003 +0200 @@ -25,6 +25,8 @@ License: Apache-2.0 URL: https://github.com/Chilipp/autodocsumm Source: https://github.com/Chilipp/autodocsumm/archive/v%{version}.tar.gz#/autodocsumm-%{version}.tar.gz +# PATCH-FIX-UPSTREAM https://github.com/Chilipp/autodocsumm/pull/88 fix build with Sphinx 7.2 +Patch: sphinx72.patch BuildRequires: %{python_module pip} BuildRequires: %{python_module versioneer} BuildRequires: %{python_module wheel} ++++++ sphinx72.patch ++++++ Index: autodocsumm-0.2.11/tests/test_autodocsumm.py =================================================================== --- autodocsumm-0.2.11.orig/tests/test_autodocsumm.py +++ autodocsumm-0.2.11/tests/test_autodocsumm.py @@ -36,7 +36,7 @@ def in_between(full, sub, s0, *others): def get_html(app, fname): - with open(app.outdir + '/' + fname) as f: + with open(str(app.outdir) + '/' + fname) as f: return f.read()