Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-frozenlist for
openSUSE:Factory checked in at 2024-08-01 22:03:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-frozenlist (Old)
and /work/SRC/openSUSE:Factory/.python-frozenlist.new.7232 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-frozenlist"
Thu Aug 1 22:03:15 2024 rev:9 rq:1190524 version:1.4.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-frozenlist/python-frozenlist.changes
2024-01-17 22:14:48.201902607 +0100
+++
/work/SRC/openSUSE:Factory/.python-frozenlist.new.7232/python-frozenlist.changes
2024-08-01 22:03:17.853665605 +0200
@@ -1,0 +2,6 @@
+Mon Jul 29 14:27:41 UTC 2024 - John Paul Adrian Glaubitz
<[email protected]>
+
+- Cherry-pick patch from Fedora to fix testsuite with Python 3.13
+ * skip-some-attributes.patch
+
+-------------------------------------------------------------------
New:
----
skip-some-attributes.patch
BETA DEBUG BEGIN:
New:- Cherry-pick patch from Fedora to fix testsuite with Python 3.13
* skip-some-attributes.patch
BETA DEBUG END:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-frozenlist.spec ++++++
--- /var/tmp/diff_new_pack.J5VgMJ/_old 2024-08-01 22:03:20.097758169 +0200
+++ /var/tmp/diff_new_pack.J5VgMJ/_new 2024-08-01 22:03:20.097758169 +0200
@@ -27,6 +27,8 @@
Patch1: no-pytest-cov.patch
# PATCH-FIX-OPENSUSE - avoid embedding random tmp dir in .so
Patch2: reproducible.patch
+# PATCH-FIX-UPSTREAM gh#aio-libs/frozenlist#588 - Skip some attributes when
testing
+Patch3: skip-some-attributes.patch
BuildRequires: %{python_module Cython}
BuildRequires: %{python_module devel >= 3.8}
BuildRequires: %{python_module expandvars}
++++++ skip-some-attributes.patch ++++++
>From c6e8550ff462a6e299df35a935d2ffbf2777894e Mon Sep 17 00:00:00 2001
From: Karolina Surma <[email protected]>
Date: Thu, 30 May 2024 10:46:25 +0200
Subject: [PATCH] Skip some attributes when testing
---
tests/test_frozenlist.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/test_frozenlist.py b/tests/test_frozenlist.py
index 403d3ec..90ea84b 100644
--- a/tests/test_frozenlist.py
+++ b/tests/test_frozenlist.py
@@ -11,7 +11,7 @@ from frozenlist import FrozenList, PyFrozenList
class FrozenListMixin:
FrozenList = NotImplemented
- SKIP_METHODS = {"__abstractmethods__", "__slots__"}
+ SKIP_METHODS = {"__abstractmethods__", "__slots__",
"__static_attributes__", "__firstlineno__"}
def test_subclass(self) -> None:
assert issubclass(self.FrozenList, MutableSequence)
--
2.44.0