Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pandas for openSUSE:Factory checked in at 2026-04-17 20:53:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pandas (Old) and /work/SRC/openSUSE:Factory/.python-pandas.new.11940 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pandas" Fri Apr 17 20:53:59 2026 rev:80 rq:1347236 version:2.3.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pandas/python-pandas.changes 2025-12-18 18:29:45.321338042 +0100 +++ /work/SRC/openSUSE:Factory/.python-pandas.new.11940/python-pandas.changes 2026-04-17 20:54:08.828789801 +0200 @@ -1,0 +2,7 @@ +Thu Apr 16 06:45:51 UTC 2026 - Markéta Machová <[email protected]> + +- Add upstream pandas-pr63406-meson-types.patch to fix build with + meson 1.11 +- Refresh test python flavors + +------------------------------------------------------------------- New: ---- pandas-pr63406-meson-types.patch ----------(New B)---------- New: - Add upstream pandas-pr63406-meson-types.patch to fix build with meson 1.11 ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pandas.spec ++++++ --- /var/tmp/diff_new_pack.v9dqYv/_old 2026-04-17 20:54:11.032880250 +0200 +++ /var/tmp/diff_new_pack.v9dqYv/_new 2026-04-17 20:54:11.036880414 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-pandas # -# 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 @@ -25,15 +25,9 @@ %else %define psuffix -%{flavor} %bcond_without test -%if "%{flavor}" != "test-py310" -%define skip_python310 1 -%endif %if "%{flavor}" != "test-py311" %define skip_python311 1 %endif -%if "%{flavor}" != "test-py312" -%define skip_python312 1 -%endif %if "%{flavor}" != "test-py313" %define skip_python313 1 %endif @@ -79,6 +73,8 @@ Patch1: pandas-pr61132-dropna.patch # PATCH-FIX-UPSTREAM pandas-pr62553-numexpr.patch gh#pandas-dev/pandas#62553 TST: remove expected warnings for new numexpr version Patch2: pandas-pr62553-numexpr.patch +# PATCH-FIX-UPSTREAM pandas-pr63406-meson-types.patch gh#pandas-dev/pandas#63406 BLD: newer versions of meson are pickier about types +Patch3: pandas-pr63406-meson-types.patch %if !%{with test} BuildRequires: %{python_module Cython >= 3.0.5} BuildRequires: %{python_module devel >= 3.9} ++++++ _multibuild ++++++ --- /var/tmp/diff_new_pack.v9dqYv/_old 2026-04-17 20:54:11.084882384 +0200 +++ /var/tmp/diff_new_pack.v9dqYv/_new 2026-04-17 20:54:11.088882548 +0200 @@ -1,7 +1,6 @@ <multibuild> - <package>test-py310</package> <package>test-py311</package> - <package>test-py312</package> <package>test-py313</package> + <package>test-py314</package> </multibuild> ++++++ pandas-pr63406-meson-types.patch ++++++ >From 0e978b68ba68e0f3b1f8b9f6b5a38072948638f0 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell <[email protected]> Date: Thu, 18 Dec 2025 05:56:43 -0500 Subject: [PATCH] BLD: newer versions of meson are pickier about types (#63406) --- pandas/_libs/meson.build | 2 +- pandas/_libs/tslibs/meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: pandas-2.3.3/pandas/_libs/meson.build =================================================================== --- pandas-2.3.3.orig/pandas/_libs/meson.build +++ pandas-2.3.3/pandas/_libs/meson.build @@ -116,7 +116,7 @@ foreach ext_name, ext_dict : libs_source ext_dict.get('sources'), cython_args: cython_args, include_directories: [inc_np, inc_pd], - dependencies: ext_dict.get('deps', ''), + dependencies: ext_dict.get('deps', []), subdir: 'pandas/_libs', install: true ) Index: pandas-2.3.3/pandas/_libs/tslibs/meson.build =================================================================== --- pandas-2.3.3.orig/pandas/_libs/tslibs/meson.build +++ pandas-2.3.3/pandas/_libs/tslibs/meson.build @@ -34,7 +34,7 @@ foreach ext_name, ext_dict : tslibs_sour ext_dict.get('sources'), cython_args: cython_args, include_directories: [inc_np, inc_pd], - dependencies: ext_dict.get('deps', ''), + dependencies: ext_dict.get('deps', []), subdir: 'pandas/_libs/tslibs', install: true )
