Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-param for openSUSE:Factory checked in at 2024-02-06 16:34:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-param (Old) and /work/SRC/openSUSE:Factory/.python-param.new.1815 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-param" Tue Feb 6 16:34:47 2024 rev:27 rq:1144424 version:2.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-param/python-param.changes 2024-01-21 23:09:50.496754012 +0100 +++ /work/SRC/openSUSE:Factory/.python-param.new.1815/python-param.changes 2024-02-06 16:35:34.701283662 +0100 @@ -1,0 +2,6 @@ +Tue Feb 6 01:28:23 UTC 2024 - Steve Kowalik <steven.kowa...@suse.com> + +- Add patch filter-deprecationwarning.patch: + * Ignore a DeprecationWarning treated as an error. + +------------------------------------------------------------------- New: ---- filter-deprecationwarning.patch BETA DEBUG BEGIN: New: - Add patch filter-deprecationwarning.patch: * Ignore a DeprecationWarning treated as an error. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-param.spec ++++++ --- /var/tmp/diff_new_pack.Vfn9pl/_old 2024-02-06 16:35:35.305305513 +0100 +++ /var/tmp/diff_new_pack.Vfn9pl/_new 2024-02-06 16:35:35.309305658 +0100 @@ -22,10 +22,11 @@ Release: 0 Summary: Declarative Python programming using Parameters License: BSD-3-Clause -Group: Development/Languages/Python URL: https://param.holoviz.org/index.html Source: https://files.pythonhosted.org/packages/source/p/param/param-%{version}.tar.gz Source100: python-param-rpmlintrc +# https://github.com/holoviz/param/issues/907 +Patch0: filter-deprecationwarning.patch BuildRequires: %{python_module base >= 3.8} BuildRequires: %{python_module hatch_vcs} BuildRequires: %{python_module hatchling} ++++++ filter-deprecationwarning.patch ++++++ Index: param-2.0.2/pyproject.toml =================================================================== --- param-2.0.2.orig/pyproject.toml +++ param-2.0.2/pyproject.toml @@ -219,6 +219,7 @@ examples = "pytest -v -n logical --dist python_files = "test*.py" filterwarnings = [ "error", + "ignore:Bitwise inversion.*:DeprecationWarning", ] xfail_strict = "true" asyncio_mode = "auto"