Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-nest-asyncio for
openSUSE:Factory checked in at 2025-10-18 14:35:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-nest-asyncio (Old)
and /work/SRC/openSUSE:Factory/.python-nest-asyncio.new.18484 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-nest-asyncio"
Sat Oct 18 14:35:02 2025 rev:11 rq:1311618 version:1.6.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-nest-asyncio/python-nest-asyncio.changes
2025-06-03 17:50:49.354844816 +0200
+++
/work/SRC/openSUSE:Factory/.python-nest-asyncio.new.18484/python-nest-asyncio.changes
2025-10-18 14:35:19.244158661 +0200
@@ -1,0 +2,5 @@
+Thu Oct 16 07:31:04 UTC 2025 - Dirk Müller <[email protected]>
+
+- add py314-skip-timeout-test.patch
+
+-------------------------------------------------------------------
New:
----
py314-skip-timeout-test.patch
----------(New B)----------
New:
- add py314-skip-timeout-test.patch
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-nest-asyncio.spec ++++++
--- /var/tmp/diff_new_pack.EcesxL/_old 2025-10-18 14:35:19.684177071 +0200
+++ /var/tmp/diff_new_pack.EcesxL/_new 2025-10-18 14:35:19.688177238 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-nest-asyncio
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,7 @@
License: BSD-2-Clause
URL: https://github.com/erdewit/nest_asyncio
Source:
https://files.pythonhosted.org/packages/source/n/nest_asyncio/nest_asyncio-%{version}.tar.gz
+Patch1: py314-skip-timeout-test.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
@@ -47,7 +48,7 @@
``loop.run_until_complete``.
%prep
-%setup -q -n nest_asyncio-%{version}
+%autosetup -p1 -n nest_asyncio-%{version}
%build
%pyproject_wheel
++++++ py314-skip-timeout-test.patch ++++++
--- nest_asyncio-1.6.0/tests/nest_test.py
+++ nest_asyncio-1.6.0/tests/nest_test.py
@@ -62,6 +62,7 @@ class NestTest(unittest.TestCase):
result = self.loop.run_until_complete(f())
self.assertEqual(result, 42)
+ @unittest.skipIf(sys.version_info >= (3, 14), "Fails due to stricter
asyncio timeout checks in Python 3.14+")
def test_timeout(self):
async def f1():