Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-jsonpickle for
openSUSE:Factory checked in at 2026-09-04 12:39:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-jsonpickle (Old)
and /work/SRC/openSUSE:Factory/.python-jsonpickle.new.1265 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-jsonpickle"
Fri Sep 4 12:39:47 2026 rev:26 rq:1375504 version:4.1.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-jsonpickle/python-jsonpickle.changes
2026-07-28 17:57:18.547213590 +0200
+++
/work/SRC/openSUSE:Factory/.python-jsonpickle.new.1265/python-jsonpickle.changes
2026-09-04 12:40:26.356646089 +0200
@@ -1,0 +2,6 @@
+Thu Sep 3 04:14:52 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch support-numpy-25.patch:
+ * Use non-removed string formats.
+
+-------------------------------------------------------------------
New:
----
support-numpy-25.patch
----------(New B)----------
New:
- Add patch support-numpy-25.patch:
* Use non-removed string formats.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-jsonpickle.spec ++++++
--- /var/tmp/diff_new_pack.zIovK6/_old 2026-09-04 12:40:27.110672568 +0200
+++ /var/tmp/diff_new_pack.zIovK6/_new 2026-09-04 12:40:27.111672603 +0200
@@ -27,6 +27,8 @@
Patch1: enable_gmpy_test.patch
# PATCH-FIX-OPENSUSE Increase warning counts for new warnings added with
4.1.2, remove with 5.0.0
Patch2: increase-warning-counts.patch
+# PATCH-FIX-UPSTREAM Based on one small part of gh#jsonpickle/jsonpickle#592
+Patch3: support-numpy-25.patch
BuildRequires: %{python_module base >= 3.8}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools >= 61.2}
++++++ support-numpy-25.patch ++++++
>From eb27cf084a90e545c10f8a5435d7f17cf1d28ff9 Mon Sep 17 00:00:00 2001
From: Theelx <[email protected]>
Date: Wed, 21 Jan 2026 17:01:24 -0500
Subject: [PATCH 1/3] Fix pandas 3.0.0 errors and numpy deprecations
Index: jsonpickle-4.1.2/tests/numpy_test.py
===================================================================
--- jsonpickle-4.1.2.orig/tests/numpy_test.py
+++ jsonpickle-4.1.2/tests/numpy_test.py
@@ -104,7 +104,7 @@ def test_ndarray_roundtrip():
np.array(['foo', 'bar']),
np.array([b'baz']),
np.array(['2010', 'NaT', '2030']).astype('M'),
- np.rec.array(b'abcdefg' * 100, formats='i2,a3,i4', shape=3),
+ np.rec.array(b'abcdefg' * 100, formats='i2,S3,i4', shape=3),
np.rec.array(
[
(1, 11, 'a'),
@@ -115,7 +115,7 @@ def test_ndarray_roundtrip():
(6, 66, 'f'),
(7, 77, 'g'),
],
- formats='u1,f4,a1',
+ formats='u1,f4,S1',
),
np.array(['1960-03-12', datetime.date(1960, 3, 12)], dtype='M8[D]'),
np.array([0, 1, -1, np.inf, -np.inf, np.nan], dtype='f2'),