From 952858812ea3e0d6dc1f8abf40f9130d683c245a Mon Sep 17 00:00:00 2001 From: Shenyang Cai Date: Mon, 23 Sep 2024 22:20:02 +0000 Subject: [PATCH 1/2] chore: remove version limit from test --- tests/system/small/operations/test_strings.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/system/small/operations/test_strings.py b/tests/system/small/operations/test_strings.py index 98fecaa93b..a903e861c5 100644 --- a/tests/system/small/operations/test_strings.py +++ b/tests/system/small/operations/test_strings.py @@ -641,9 +641,6 @@ def test_getitem_w_array(index, column_name, repeated_df, repeated_pandas_df): def test_getitem_w_struct_array(): - if packaging.version.Version(pd.__version__) <= packaging.version.Version("1.5.3"): - pytest.skip("https://github.com/googleapis/python-bigquery/issues/1992") - pa_struct = pa.struct( [ ("name", pa.string()), From f95936ce7ee6dd3a1053512e3cc4bfc1c747a1e4 Mon Sep 17 00:00:00 2001 From: Shenyang Cai Date: Mon, 23 Sep 2024 22:30:39 +0000 Subject: [PATCH 2/2] remove redundant import --- tests/system/small/operations/test_strings.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/system/small/operations/test_strings.py b/tests/system/small/operations/test_strings.py index a903e861c5..bb328360ee 100644 --- a/tests/system/small/operations/test_strings.py +++ b/tests/system/small/operations/test_strings.py @@ -14,7 +14,6 @@ import re -import packaging.version import pandas as pd import pyarrow as pa import pytest