Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-enrich for openSUSE:Factory checked in at 2025-12-02 13:18:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-enrich (Old) and /work/SRC/openSUSE:Factory/.python-enrich.new.14147 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-enrich" Tue Dec 2 13:18:25 2025 rev:6 rq:1320260 version:1.3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-enrich/python-enrich.changes 2025-09-18 21:08:22.889660406 +0200 +++ /work/SRC/openSUSE:Factory/.python-enrich.new.14147/python-enrich.changes 2025-12-02 13:18:34.582873431 +0100 @@ -1,0 +2,6 @@ +Thu Nov 27 02:50:49 UTC 2025 - Steve Kowalik <[email protected]> + +- Add patch support-pytest-9.patch: + * Support pytest 9 pyproject changes. + +------------------------------------------------------------------- New: ---- support-pytest-9.patch ----------(New B)---------- New: - Add patch support-pytest-9.patch: * Support pytest 9 pyproject changes. ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-enrich.spec ++++++ --- /var/tmp/diff_new_pack.c0HUbx/_old 2025-12-02 13:18:35.546913906 +0100 +++ /var/tmp/diff_new_pack.c0HUbx/_new 2025-12-02 13:18:35.546913906 +0100 @@ -28,6 +28,8 @@ Patch0: remove_setuptools_scm.patch # PATCH-FIX-UPSTREAM remove_rich_constraint.patch -- remove the constraint on rich < 12.5, the tests also succeed with rich 14.0 https://github.com/pycontribs/enrich/issues/40 Patch1: remove_rich_constraint.patch +# PATCH-FIX-UPSTREAM gh#pycontribs/enrich#74 +Patch2: support-pytest-9.patch BuildRequires: %{python_module pip} BuildRequires: %{python_module pytest-mock} BuildRequires: %{python_module pytest} ++++++ support-pytest-9.patch ++++++ >From 5169008811ad2837ab4240bee87e0de7e10036d7 Mon Sep 17 00:00:00 2001 From: Steve Kowalik <[email protected]> Date: Thu, 27 Nov 2025 13:47:48 +1100 Subject: [PATCH] chore: Support pytest 9 Since pytest 9 now assumes TOML formatting for tool.pytest configuration sections, use the ini style for now. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 530c296..f99ca04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,7 +62,7 @@ warn_redundant_casts = true warn_return_any = true warn_unused_configs = true -[tool.pytest] +[tool.pytest.ini_options] addopts = "--doctest-modules --durations 10 --durations-min=3 --color=yes" doctest_optionflags = ["ALLOW_UNICODE", "ELLIPSIS"] norecursedirs = "dist doc build .tox .eggs"
