Describe the bug, including details regarding any error messages, version, and platform.
CI nightly jobs for pandas and numpy nightly/devel:
have been failing with the following test failure for approximately 1 week:
____________TestConvertMetadata.test_table_column_subset_metadata_____________self=<pyarrow.tests.test_pandas.TestConvertMetadataobjectat0x7f7bbc3253e0>deftest_table_column_subset_metadata(self):
# ARROW-1883# non-default indexforindexin [
pd.Index(['a', 'b', 'c'], name='index'),
pd.date_range("2017-01-01", periods=3, tz='Europe/Brussels')]:
df=pd.DataFrame({'a': [1, 2, 3],
'b': [.1, .2, .3]}, index=index)
table=pa.Table.from_pandas(df)
table_subset=table.remove_column(1)
result=table_subset.to_pandas()
expected=df[['a']]
ifisinstance(df.index, pd.DatetimeIndex):
df.index.freq=None>tm.assert_frame_equal(result, expected)
EAssertionError: (None, <Day>)Component(s)
Python
Describe the bug, including details regarding any error messages, version, and platform.
CI nightly jobs for pandas and numpy nightly/devel:
have been failing with the following test failure for approximately 1 week:
Component(s)
Python