Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-pytest-doctestplus for
openSUSE:Factory checked in at 2024-12-20 15:27:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytest-doctestplus (Old)
and /work/SRC/openSUSE:Factory/.python-pytest-doctestplus.new.1881 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pytest-doctestplus"
Fri Dec 20 15:27:44 2024 rev:19 rq:1232733 version:1.3.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pytest-doctestplus/python-pytest-doctestplus.changes
2024-03-17 22:15:31.815345266 +0100
+++
/work/SRC/openSUSE:Factory/.python-pytest-doctestplus.new.1881/python-pytest-doctestplus.changes
2024-12-20 15:28:17.762276554 +0100
@@ -1,0 +2,15 @@
+Thu Dec 19 10:11:47 UTC 2024 - Nico Krapp <[email protected]>
+
+- Update to 1.3.0:
+ * add tests for ufuncs without docstrings, wrapped or not by @lpsinger in
#248
+ * Update skips for broken test by @lpsinger in #249
+ * Fix multiline code in generate/update diff by @seberg in #253
+ * Remove accidental debug print from new tests by @seberg in #254
+ * refactored out runtime dependency on setuptools by @neutrinoceros in #258
+ * adding python3.13 to CI and fix any incompatibilities by @bsipocz in #260
+ * add one more python release to xfail list by @bsipocz in #266
+ * Use hash for Action workflow versions and update if needed by @pllim in
#267
+ * Don't assume config exists. by @Carreau in #271
+- Add add-missing-xfail-version.patch to fix broken test
+
+-------------------------------------------------------------------
Old:
----
pytest-doctestplus-1.2.1.tar.gz
New:
----
add-missing-xfail-version.patch
pytest_doctestplus-1.3.0.tar.gz
BETA DEBUG BEGIN:
New: * Don't assume config exists. by @Carreau in #271
- Add add-missing-xfail-version.patch to fix broken test
BETA DEBUG END:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pytest-doctestplus.spec ++++++
--- /var/tmp/diff_new_pack.ODunUK/_old 2024-12-20 15:28:18.198294520 +0100
+++ /var/tmp/diff_new_pack.ODunUK/_new 2024-12-20 15:28:18.202294685 +0100
@@ -27,12 +27,14 @@
%{?sle15_python_module_pythons}
Name: python-pytest-doctestplus%{psuffix}
-Version: 1.2.1
+Version: 1.3.0
Release: 0
Summary: Pytest plugin with advanced doctest features
License: BSD-3-Clause
URL: https://github.com/scientific-python/pytest-doctestplus
-Source:
https://files.pythonhosted.org/packages/source/p/pytest-doctestplus/pytest-doctestplus-%{version}.tar.gz
+Source:
https://files.pythonhosted.org/packages/source/p/pytest-doctestplus/pytest_doctestplus-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM add-missing-xfail-version.patch (gh#23eb3de)
+Patch0: add-missing-xfail-version.patch
BuildRequires: %{python_module base >= 3.8}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools_scm}
@@ -41,7 +43,6 @@
BuildRequires: python-rpm-macros
Requires: python-packaging >= 17.0
Requires: python-pytest >= 4.6
-Requires: python-setuptools >= 30.3.0
%if %{with test}
BuildRequires: %{python_module Sphinx}
BuildRequires: %{python_module numpy-devel}
@@ -61,7 +62,7 @@
as reStructuredText (".rst"), markdown (".md"), and TeX (".tex").
%prep
-%setup -q -n pytest-doctestplus-%{version}
+%autosetup -p1 -n pytest_doctestplus-%{version}
%build
%pyproject_wheel
++++++ add-missing-xfail-version.patch ++++++
>From 23eb3de76bc4581dfc8261b07a8a55cc03fea45b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= <[email protected]>
Date: Mon, 16 Dec 2024 19:05:07 -0800
Subject: [PATCH] TST: one more version to xfail
---
tests/test_doctestplus.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/test_doctestplus.py b/tests/test_doctestplus.py
index a88ca7b..fb0ac37 100644
--- a/tests/test_doctestplus.py
+++ b/tests/test_doctestplus.py
@@ -1142,7 +1142,7 @@ def f():
@pytest.mark.xfail(
- python_version() in ('3.11.9', '3.11.10', '3.12.3'),
+ python_version() in ('3.11.9', '3.11.10', '3.11.11', '3.12.3'),
reason='broken by https://github.com/python/cpython/pull/115440')
def test_ufunc(testdir):
pytest.importorskip('numpy')