Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-holoviews for
openSUSE:Factory checked in at 2026-03-18 16:50:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-holoviews (Old)
and /work/SRC/openSUSE:Factory/.python-holoviews.new.8177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-holoviews"
Wed Mar 18 16:50:24 2026 rev:47 rq:1340812 version:1.22.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-holoviews/python-holoviews.changes
2025-12-22 22:49:53.958654304 +0100
+++
/work/SRC/openSUSE:Factory/.python-holoviews.new.8177/python-holoviews.changes
2026-03-18 16:51:58.900727021 +0100
@@ -1,0 +2,6 @@
+Wed Mar 18 01:21:36 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch support-new-pyparsing.patch:
+ * Ignore PyparsingDeprecationWarning for now.
+
+-------------------------------------------------------------------
New:
----
support-new-pyparsing.patch
----------(New B)----------
New:
- Add patch support-new-pyparsing.patch:
* Ignore PyparsingDeprecationWarning for now.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-holoviews.spec ++++++
--- /var/tmp/diff_new_pack.3Xgy51/_old 2026-03-18 16:51:59.716760655 +0100
+++ /var/tmp/diff_new_pack.3Xgy51/_new 2026-03-18 16:51:59.720760820 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-holoviews
#
-# Copyright (c) 2025 SUSE LLC and contributors
+# Copyright (c) 2026 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
@@ -34,6 +34,8 @@
Source0:
https://files.pythonhosted.org/packages/source/h/holoviews/holoviews-%{version}.tar.gz
# PATCH-FEATURE-OPENSUSE holoviews-opensuse-pyproject.patch -- for obs builds,
[email protected]
Patch0: holoviews-opensuse-pyproject.patch
+# PATCH-FIX-OPENSUSE Ignore pyparsing deprecation warnings
+Patch1: support-new-pyparsing.patch
BuildRequires: %{python_module base >= 3.10}
BuildRequires: %{python_module hatch_vcs}
BuildRequires: %{python_module hatchling}
++++++ support-new-pyparsing.patch ++++++
Index: holoviews-1.22.1/pyproject.toml
===================================================================
--- holoviews-1.22.1.orig/pyproject.toml
+++ holoviews-1.22.1/pyproject.toml
@@ -147,6 +147,8 @@ filterwarnings = [
# OBS
"ignore::FutureWarning",
"ignore:\\s*The dash_core_components package is deprecated:UserWarning",
+ # Can be removed after upgrading from 1.22.1
+ "ignore::pyparsing.warnings.PyparsingDeprecationWarning",
]
[tool.coverage]