1
0
Fork 0

Removing pandas2p1_ignore_warnings.patch, not needed anymore with new upstream version.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-05 19:15:39 +01:00
parent d3f6049cb3
commit 666cf9c2a3
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
2 changed files with 0 additions and 27 deletions

View file

@ -1,26 +0,0 @@
Description: Ignore warnings added in pandas 2.1
Author: Rebecca N. Palmer <rebecca_palmer@zoho.com>
Bug-Debian: https://bugs.debian.org/1053946
Forwarded: no
--- tqdm-4.64.1.orig/tests/tests_pandas.py
+++ tqdm-4.64.1/tests/tests_pandas.py
@@ -66,6 +66,8 @@ def test_pandas_series():
exres + " at least twice.", our_file.read()))
+import pytest
+@pytest.mark.filterwarnings('ignore:.*applymap has been deprecated.*:FutureWarning')
def test_pandas_data_frame():
"""Test pandas.DataFrame.progress_apply and .progress_applymap"""
with closing(StringIO()) as our_file:
@@ -107,6 +109,8 @@ def test_pandas_data_frame():
exres + " at least once.", our_file.read()))
+@pytest.mark.filterwarnings('ignore:.*the provided callable will be used directly.*:FutureWarning')
+@pytest.mark.filterwarnings('ignore:.*groupby with axis=1 is deprecated.*:FutureWarning')
def test_pandas_groupby_apply():
"""Test pandas.DataFrame.groupby(...).progress_apply"""
with closing(StringIO()) as our_file:

View file

@ -1,2 +1 @@
pandas2p1_ignore_warnings.patch
python3p12_compat.patch python3p12_compat.patch