Skip to content

Commit 5569126

Browse files
CI: test_unsupported_other fails on pyarrow 0.17 (#33990)
1 parent cfb886c commit 5569126

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/test_feather.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ def test_read_columns(self):
102102

103103
def test_unsupported_other(self):
104104

105-
# period
106-
df = pd.DataFrame({"a": pd.period_range("2013", freq="M", periods=3)})
105+
# mixed python objects
106+
df = pd.DataFrame({"a": ["a", 1, 2.0]})
107107
# Some versions raise ValueError, others raise ArrowInvalid.
108108
self.check_error_on_write(df, Exception)
109109

0 commit comments

Comments
 (0)