From f4937b1d9240853828f46c95467803fbd781412f Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Tue, 5 May 2020 09:28:53 +0100 Subject: [PATCH] CI: test_unsupported_other fails on pyarrow 0.17 --- pandas/tests/io/test_feather.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/tests/io/test_feather.py b/pandas/tests/io/test_feather.py index 0038df78dd866..23b51e718aa8c 100644 --- a/pandas/tests/io/test_feather.py +++ b/pandas/tests/io/test_feather.py @@ -102,8 +102,8 @@ def test_read_columns(self): def test_unsupported_other(self): - # period - df = pd.DataFrame({"a": pd.period_range("2013", freq="M", periods=3)}) + # mixed python objects + df = pd.DataFrame({"a": ["a", 1, 2.0]}) # Some versions raise ValueError, others raise ArrowInvalid. self.check_error_on_write(df, Exception)